Fixing dead variables and params

This commit is contained in:
alexsomeoddpilot
2014-10-30 09:24:33 -05:00
parent 246594f230
commit 2e470c7903
4 changed files with 4 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
/**
* Clean up the_excerpt()
*/
function roots_excerpt_more($more) {
function roots_excerpt_more() {
return ' &hellip; <a href="' . get_permalink() . '">' . __('Continued', 'roots') . '</a>';
}
add_filter('excerpt_more', 'roots_excerpt_more');