Re-add excerpt and wp_title functions from cleanup.php

Rename custom.php to extras.php
This commit is contained in:
Ben Word
2014-03-30 19:36:47 -05:00
parent 5ba5de8ee5
commit 7551f99641
3 changed files with 23 additions and 5 deletions

22
lib/extras.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
/**
* Clean up the_excerpt()
*/
function roots_excerpt_more($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);