小子在使用WordPress过程中比较喜欢使用继续阅读工具——即<!–more–>代码,但是小子发现了一个小问题,那就是当读者点击继续阅读后跳到的页面不是从头开始的,而是直接跳过了开头,从未读的文章开始显示的。
也许有些人就需要这样的效果,不过,小子还是认为点击继续阅读后能够从头开始阅读文章,让文章的连接性能够做到最好,而不去破坏整体文章的结构。
那如何来修改WordPress more标签的完整显示呢?小子这就来说说一种快捷的解决方法:
我们只需修改wp-includes/post-template.php这个文件中的的一行代码即可,具体我们通过搜索post-template.php找到permalink,将
$output .= apply_filters( ‘the_content_more_link’, ‘ <a href=”‘. get_permalink() . “#more-$id\”
class=\”more-link\”&gt;$more_link_text</a>”, $more_link_text );
中的红色部分#more-$id去掉即可,最终效果如下:
$output .= apply_filters( ‘the_content_more_link’, ‘ <a href=”‘. get_permalink() . “\”
class=\”more-link\”&gt;$more_link_text</a>”, $more_link_text );
我们修改post-template.php后保存,重新上传至wp-includes文件夹内,然后我们刷新自己的页面,随便点击一篇文章的继续阅读是不是已经重头开始阅读了。
暂无评论内容