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

时间:2018-08-30 06:04:35

标签: wordpress

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.
		?>

屏幕截图

1 个答案:

答案 0 :(得分:-1)

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

相关问题