Ciò è utile se desideri sostituire i puntini di sospensione (…) dell'estratto con un permalink al post.
functions.php aggiunta:
function replace_excerpt($content) ( return str_replace('(… )', ' Continue Reading ', $content ); ) add_filter('the_excerpt', 'replace_excerpt');