当我在帖子(single.php)上添加“阅读更多”时,我可以看到<--更多-->在HTML编辑器中,当我发布它时,我无法在我的网站上看到它。
我已经尝试了几个插件来解决这个问题,但没有任何帮助。
我的单曲。php,我正在使用:
<?php get_template_part( \'content\', get_post_format() ); ?>
和我的内容上的代码。php是这样的:
<?php if ( is_single() ) : ?>
<div class="entry-contentinside">
<?php the_content( esc_attr__( \'Continue reading <span class="meta-nav">→</span>\', \'Mytheme\' ) ); ?>
</div>
<?php endif; ?>
我正在通过谷歌搜索解决此问题,并找到以下代码:
<?php
global $more;
$more = 0;
?>
只提供一个带有空白链接的“继续阅读”链接。
注:1。当我使用时<--下一页-->,这是工作。但这不是一种正常的方式,因为按钮编辑器会产生<--更多--->
More标签是这样的here有人能帮帮我吗。非常感谢你的帮助。
非常感谢。