Page.php不显示内容

时间:2015-01-28 作者:Adrian

我正在使用一个页面。我在大约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>
页面标题显示良好,因此循环良好,内容保持空白。

有什么建议吗?以前从没见过这个。谢谢

1 个回复
最合适的回答,由SO网友:Adrian 整理而成

好的,分类,重新上传我预先开发的功能。php文件,其中我只删除了一个面包屑函数和一个分页函数,但这肯定会对页面内容产生一些影响,所以不管怎样,这又回来了,谢谢您的时间。

结束

相关推荐