<?php
/**
* Theme filters.
*/
namespace App;
/**
* Add "… Continued" to the excerpt.
*
* @return string
*/
add_filter('excerpt_more', function () {
return sprintf(' … <a href="%s">%s</a>', get_permalink(), __('Continued', 'sage'));
});