示例#1
0
/**
 * Output the contents of answer help page
 * @since 2.2
 */
function ap_how_to_answer()
{
    $content = ap_get_how_to_answer();
    if ($content !== false) {
        echo $content;
    }
}
示例#2
0
/**
 * Output the contents of answer help page.
 * @since 2.2
 */
function ap_how_to_answer()
{
    $content = ap_get_how_to_answer();
    if (false !== $content) {
        echo $content;
    }
}