用永久链接替换摘录省略号

Avatar of Chris Coyier
Chris Coyier

如果您想用指向文章的永久链接替换摘录中的省略号 […],这将非常有用。

functions.php 添加内容

function replace_excerpt($content) {
       return str_replace('[...]',
               '<div class="more-link"><a href="'. get_permalink() .'">Continue Reading</a></div>',
               $content
       );
}
add_filter('the_excerpt', 'replace_excerpt');