예제 #1
0
파일: theme.php 프로젝트: haythameyd/powrly
/**
 * Output the contents of help page
 * @since 2.2
 */
function ap_how_to_ask()
{
    $content = ap_get_how_to_ask();
    if ($content !== false) {
        echo $content;
    }
}
예제 #2
0
/**
 * Output the contents of help page.
 * @since 2.2
 */
function ap_how_to_ask()
{
    $content = ap_get_how_to_ask();
    if (false !== $content) {
        echo $content;
    }
}