Files
bedrock/lib/extras.php
2014-12-18 14:07:43 -06:00

9 lines
217 B
PHP

<?php
/**
* Clean up the_excerpt()
*/
function roots_excerpt_more() {
return ' &hellip; <a href="' . get_permalink() . '">' . __('Continued', 'roots') . '</a>';
}
add_filter('excerpt_more', 'roots_excerpt_more');