Substitua Elipse de Trecho por Permalink - CSS-Tricks

Anonim

Isso é útil se você quiser substituir as reticências (...) do trecho por um link permanente para a postagem.

adição funções.php:

function replace_excerpt($content) ( return str_replace('(… )', ' Continue Reading ', $content ); ) add_filter('the_excerpt', 'replace_excerpt');