我正在使用一个页面。我在大约400个Wordpress网站上使用的php模板,突然循环决定它不想显示任何内容。
代码为:
<div class="text-content">
<?php if (have_posts()) : while (have_posts()) : the_post();?>
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
<?php endwhile; endif; ?>
</div>
页面标题显示良好,因此循环良好,内容保持空白。
有什么建议吗?以前从没见过这个。谢谢