Esempio n. 1
0
/**
 * 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;
    }
}
Esempio n. 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;
    }
}