/** * Filters the `wp_title` output early. * * @since 1.0.0 * @access public * @param string $title * @param string $separator * @param string $seplocation * @return string */ function hoot_wp_title($doctitle, $separator, $seplocation) { 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 = hoot_single_author_title('', false); } elseif (get_query_var('minute') && get_query_var('hour')) { $doctitle = hoot_single_minute_hour_title('', false); } elseif (get_query_var('minute')) { $doctitle = hoot_single_minute_title('', false); } elseif (get_query_var('hour')) { $doctitle = hoot_single_hour_title('', false); } elseif (is_day()) { $doctitle = hoot_single_day_title('', false); } elseif (get_query_var('w')) { $doctitle = hoot_single_week_title('', false); } elseif (is_month()) { $doctitle = single_month_title(' ', false); } elseif (is_year()) { $doctitle = hoot_single_year_title('', false); } elseif (is_archive()) { $doctitle = hoot_single_archive_title('', false); } elseif (is_search()) { $doctitle = hoot_search_title('', false); } elseif (hoot_is_404()) { $doctitle = hoot_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', 'dispatch'), $doctitle . $separator, number_format_i18n(absint($page))); } /* Trim separator + space from beginning and end. */ $doctitle = trim(strip_tags($doctitle), "{$separator} "); return $doctitle; }
/** * Gets the loop title. This function should only be used on archive-type pages, such as archive, blog, and * search results pages. It outputs the title of the page. * * @link http://core.trac.wordpress.org/ticket/21995 * @since 1.0.0 * @access public * @return string */ function hoot_get_loop_title() { $loop_title = $loop_title_suffix = ''; if (is_home() && !is_front_page()) { $loop_title = get_post_field('post_title', get_queried_object_id()); } elseif (is_category()) { $loop_title = single_cat_title('', false); } elseif (is_tag()) { $loop_title = single_tag_title('', false); } elseif (is_tax()) { $loop_title = single_term_title('', false); } elseif (is_author()) { $loop_title = hoot_single_author_title('', false); } elseif (is_search()) { $loop_title = hoot_search_title('', false); } elseif (is_post_type_archive()) { $loop_title = post_type_archive_title('', false); } elseif (get_query_var('minute') && get_query_var('hour')) { $loop_title = hoot_single_minute_hour_title('', false); } elseif (get_query_var('minute')) { $loop_title = hoot_single_minute_title('', false); } elseif (get_query_var('hour')) { $loop_title = hoot_single_hour_title('', false); } elseif (is_day()) { $loop_title = hoot_single_day_title('', false); } elseif (get_query_var('w')) { $loop_title = hoot_single_week_title('', false); } elseif (is_month()) { $loop_title = single_month_title(' ', false); } elseif (is_year()) { $loop_title = hoot_single_year_title('', false); } elseif (is_archive()) { $loop_title = hoot_single_archive_title('', false); } $loop_title = apply_filters('hoot_loop_title', $loop_title); /* If the current page is a paged page. */ if ((($page = get_query_var('paged')) || ($page = get_query_var('page'))) && $page > 1) { $paged = number_format_i18n(absint($page)); $loop_title_suffix = ' ' . sprintf(__('(Page %s)', 'hoot'), $paged); $loop_title_suffix = apply_filters('hoot_loop_title_suffix', $loop_title_suffix, $paged); } return $loop_title . $loop_title_suffix; }