1<?php 2 3/** 4 * Theme filters. 5 */ 6 7namespace App; 8 9/** 10 * Add "… Continued" to the excerpt. 11 * 12 * @return string 13 */ 14add_filter('excerpt_more', function () { 15 return sprintf(' … <a href="%s">%s</a>', get_permalink(), __('Continued', 'sage')); 16});