首页 > 解决方案 > Wordpress Read More 仍然显示在 single.php 页面的博客文章中

问题描述

Wordpress ReadMore 仍然显示在 single.php 页面的博客文章中

<?php
		while ( have_posts() ) : the_post();

			get_template_part( 'template-parts/content', get_post_type() );

			the_post_navigation();

			// If comments are open or we have at least one comment, load up the comment template.
			if ( comments_open() || get_comments_number() ) :
				comments_template();
			endif;

		endwhile; // End of the loop.
		?>

截屏

标签: wordpress

解决方案


您是否使用类似the_content( 'Continue reading ' );the_excerpt包含在其中的模板部分文件中的代码?您可以包含该文件的代码吗?


推荐阅读