Files
sage/lib/titles.php
2014-12-18 14:11:35 -06:00

22 lines
519 B
PHP

<?php
/**
* Page titles
*/
function roots_title() {
if (is_home()) {
if (get_option('page_for_posts', true)) {
return get_the_title(get_option('page_for_posts', true));
} else {
return __('Latest Posts', 'roots');
}
} elseif (is_archive()) {
return get_the_archive_title();
} elseif (is_search()) {
return sprintf(__('Search Results for %s', 'roots'), get_search_query());
} elseif (is_404()) {
return __('Not Found', 'roots');
} else {
return get_the_title();
}
}