我想更改WordPress中的“阅读更多”链接,我找到了一些教程,<!-- more -->
我可以写一些其他内容<!-- more Proceed... -->
(这不起作用)。
在index.php中我应该编辑<?php the_content('Read More..,'); ?>
,但是在我的index.php中没有Read More文本,它看起来像这个<?php the_content(''); ?>
,它是空的,它仍然显示帖子上的Read More。
其他任何想法如何改变它?
答案 0 :(得分:0)
您可以更改
<?php the_content(''); ?>
进入你想要的任何东西。所以你可以做到:
<?php the_content('more Proceed... '); ?>
或任何你想要的。 &#34;阅读更多...&#34;当你把它打开时是默认的。
答案 1 :(得分:0)
在function.php文件中添加此代码块
// Replaces the excerpt "more" text by a link
function new_excerpt_more($more) {
global $post;
return '<a class="moretag" href="'. get_permalink($post->ID) . '"> Read more... </a>';
}
add_filter('excerpt_more', 'new_excerpt_more');