Remove wp_title, add title-tag theme support

This commit is contained in:
Ben Word
2014-12-18 14:07:43 -06:00
parent 55c7976e37
commit 49221085d1
3 changed files with 4 additions and 15 deletions

View File

@@ -6,17 +6,3 @@ function roots_excerpt_more() {
return ' &hellip; <a href="' . get_permalink() . '">' . __('Continued', 'roots') . '</a>';
}
add_filter('excerpt_more', 'roots_excerpt_more');
/**
* Manage output of wp_title()
*/
function roots_wp_title($title) {
if (is_feed()) {
return $title;
}
$title .= get_bloginfo('name');
return $title;
}
add_filter('wp_title', 'roots_wp_title', 10);