Wordpress页面没有显示任何内容

时间:2016-08-15 14:07:09

标签: wordpress wordpress-theming

我已经安装了WordPress 4.5.3并构建了自定义主题。一切都很好,除了一些页面根本没有显示任何内容。我试图搜索如何解决这个问题,但我找不到任何解决方案,因为我自己的问题的页面甚至没有进入“循环”。我试图回应循环中的事情,以确保它进入但无济于事。我的主题仍处于脱机状态,因此我无法提供指向它的链接。请知道为什么它没有进入循环。

<?php get_header(); ?>
<style type="text/css">
  .submit input {
    height: 50px;
    width: 200px;
    background: #f88b0c;
  }
</style>
<div class="row">
  <?php while ( have_posts() ) : the_post(); ?>
  <div class="col-md-12 ">
    <h2 class="title ">
			<center>
				<?the_title()?>
				<hr>
			</center>
		</h2>
  </div>
  <div class="col-md-12">
    <?php if(has_post_thumbnail())?>
    <?php the_post_thumbnail(); ?>
  </div>
  <div class="col-md-12">
    <p>
      <?php the_content(); ?>
    </p>
  </div>
  <?php endwhile;?>
</div>

<?php get_footer(); ?>

0 个答案:

没有答案