9 lines
217 B
PHP
9 lines
217 B
PHP
<?php
|
|
/**
|
|
* Clean up the_excerpt()
|
|
*/
|
|
function roots_excerpt_more() {
|
|
return ' … <a href="' . get_permalink() . '">' . __('Continued', 'roots') . '</a>';
|
|
}
|
|
add_filter('excerpt_more', 'roots_excerpt_more');
|