Files
sage/lib/extras.php
2015-01-09 20:52:29 -06:00

9 lines
214 B
PHP

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