我正在使用 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');
但这不起作用。
任何人都知道如何做到这一点
谢谢