コード例 #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
ファイル: theme.php プロジェクト: kevinfodness/anspress
/**
 * 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;
    }
}