Example #1
0
/**
* Filters the `wp_title` output early.
*
* @since 1.2.0
* @access public
* @param string $title
* @param string $separator
* @param string $seplocation
* @return string
*/
function bon_wp_title($doctitle = null, $separator = null, $seplocation = null)
{
    if (is_front_page()) {
        $doctitle = get_bloginfo('name') . $separator . ' ' . get_bloginfo('description');
    } elseif (is_home() || is_singular()) {
        $doctitle = single_post_title('', false);
    } elseif (is_category()) {
        $doctitle = single_cat_title('', false);
    } elseif (is_tag()) {
        $doctitle = single_tag_title('', false);
    } elseif (is_tax()) {
        $doctitle = single_term_title('', false);
    } elseif (is_post_type_archive()) {
        $doctitle = post_type_archive_title('', false);
    } elseif (is_author()) {
        $doctitle = get_the_author_meta('display_name', get_query_var('author'));
    } elseif (get_query_var('minute') && get_query_var('hour')) {
        $doctitle = bon_single_minute_hour_title('', false);
    } elseif (get_query_var('minute')) {
        $doctitle = bon_single_minute_title('', false);
    } elseif (get_query_var('hour')) {
        $doctitle = bon_single_hour_title('', false);
    } elseif (is_day()) {
        $doctitle = bon_single_day_title('', false);
    } elseif (get_query_var('w')) {
        $doctitle = bon_single_week_title('', false);
    } elseif (is_month()) {
        $doctitle = single_month_title(' ', false);
    } elseif (is_year()) {
        $doctitle = bon_single_year_title('', false);
    } elseif (is_archive()) {
        $doctitle = bon_single_archive_title('', false);
    } elseif (is_search()) {
        $doctitle = bon_search_title('', false);
    } elseif (is_404()) {
        $doctitle = bon_404_title('', false);
    }
    /* If the current page is a paged page. */
    if ((($page = get_query_var('paged')) || ($page = get_query_var('page'))) && $page > 1) {
        /* Translators: 1 is the page title. 2 is the page number. */
        $doctitle = sprintf(__('%1$s Page %2$s', 'bon'), $doctitle . $separator, number_format_i18n(absint($page)));
    }
    /* Trim separator + space from beginning and end. */
    $doctitle = trim($doctitle, "{$separator} ");
    return $doctitle;
}
Example #2
0
/**
* Gets the loop description. This function should only be used on archive-type pages, such as archive, blog, and
* search results pages. It outputs the description of the page.
*
* @link http://core.trac.wordpress.org/ticket/21995
* @since 1.2.0
* @access public
* @return string
*/
function bon_get_loop_description()
{
    $loop_desc = '';
    if (is_home() && !is_front_page()) {
        $loop_desc = get_post_field('post_content', get_queried_object_id(), 'raw');
    } elseif (is_category()) {
        $loop_desc = get_term_field('description', get_queried_object_id(), 'category', 'raw');
    } elseif (is_tag()) {
        $loop_desc = get_term_field('description', get_queried_object_id(), 'post_tag', 'raw');
    } elseif (is_tax()) {
        $loop_desc = get_term_field('description', get_queried_object_id(), get_query_var('taxonomy'), 'raw');
    } elseif (is_author()) {
        $loop_desc = get_the_author_meta('description', get_query_var('author'));
    } elseif (is_search()) {
        $loop_desc = sprintf(__('You are browsing the search results for “%s”', 'bon'), get_search_query());
    } elseif (is_post_type_archive()) {
        $loop_desc = get_post_type_object(get_query_var('post_type'))->description;
    } elseif (is_time()) {
        $loop_desc = __('You are browsing the site archives by time.', 'bon');
    } elseif (is_day()) {
        $loop_desc = sprintf(__('You are browsing the site archives for %s.', 'bon'), bon_single_day_title('', false));
    } elseif (is_month()) {
        $loop_desc = sprintf(__('You are browsing the site archives for %s.', 'bon'), single_month_title(' ', false));
    } elseif (is_year()) {
        $loop_desc = sprintf(__('You are browsing the site archives for %s.', 'bon'), bon_single_year_title('', false));
    } elseif (is_archive()) {
        $loop_desc = __('You are browsing the site archives.', 'bon');
    }
    return apply_filters('bon_loop_description', $loop_desc);
}