0

我正在使用 wordpress。我想自动为每个帖子添加阅读更多链接。我不想使用标签。因为我想保持每个帖子的长度相同。就像在 200 字之后它会显示阅读更多链接。

我正在使用二十十个主题。我把代码放在function.php中

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

但这不起作用。

任何人都知道如何做到这一点

谢谢

4

1 回答 1

0

使用 the_content 而不是 the_excerpt

如果全部失败尝试设置 $more = 0; 在你的循环开始之前

于 2012-06-07T13:32:52.297 回答