更改更多标签默认值

时间:2015-10-12 07:47:51

标签: wordpress

我有一个wordpress blogg,我想改变"更多"标签。我试图改变内容"邮件中的代码但不起作用。

我试图通过我能找到的每个文件来查看,而无需更改“#34;阅读更多..."。

当我查看源代码时,我可以看到这个

<div>
  <input type="text" size="5" maxlength="5" />
  <div class="popup">Small text popup</div>
</div>

任何人都有任何想法我可以改变吗?现在我不知道该怎么做。

1 个答案:

答案 0 :(得分:0)

尝试这个

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