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

问题描述 投票:0回答:1

Wordpress Read More仍显示在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
1个回答
-1
投票

您是否在模板部件文件中使用了the_content( 'Continue reading ' );the_excerpt等代码?你能包含那个文件的代码吗?

© www.soinside.com 2019 - 2024. All rights reserved.