如何将get_the_excerpt()中的[...]作为超链接

时间:2013-09-24 10:40:46

标签: wordpress

我想在帖子页面中显示[...]作为特定帖子的超链接。我知道这是来自get_the_excerpt()。

如何实现这一目标?提前谢谢。

1 个答案:

答案 0 :(得分:1)

将此功能复制到您的functions.php

function new_excerpt_more($more) {
       global $post;
    return '<span class="readmore"><a class="moretag" href="'. get_permalink($post->ID) . '"> Read more..</a></span>';
}
add_filter('excerpt_more', 'new_excerpt_more');