예제 #1
0
function femme_show_read_more_on_excerpt()
{
    if (is_singular() || function_exists('is_bbPress') && is_bbPress()) {
        return;
    }
    if ('excerpts' == genesis_get_option('content_archive') || has_excerpt()) {
        echo '<p class="more-link-excerpt"><a href="' . get_permalink() . '" class="more-link">' . __('Continue Reading', 'cuttz-framework') . '</a></p>';
    }
}
예제 #2
0
/**
 * Check if bbPress Exists and if on a bbPress Page
 *
 * @since rtPanel 2.1
 */
function rtp_is_bbPress()
{
    return class_exists('bbPress') && is_bbPress();
}