阅读更多关于wordpress中每个帖子的链接

时间:2012-06-04 00:21:05

标签: wordpress wordpress-theming

我正在使用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'); 

但这不起作用。

任何团体都知道如何做到这一点

由于

1 个答案:

答案 0 :(得分:0)

使用the_content而不是the_excerpt

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