【问题标题】:Read More link for each post in wordpress阅读更多 wordpress 中每个帖子的链接
【发布时间】:2013-09-21 20:48:31
【问题描述】:

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

但这不起作用。

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

谢谢

【问题讨论】:

    标签: wordpress wordpress-theming


    【解决方案1】:

    使用 the_content 而不是 the_excerpt

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

    【讨论】:

      猜你喜欢
      • 2011-01-17
      • 2017-09-10
      • 2015-02-04
      • 2012-11-01
      • 1970-01-01
      • 1970-01-01
      • 2012-09-28
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多