我制作了我的第一个主题,它非常适合编辑更新页面等,但不会显示任何帖子。
我已将“循环”放入模板页面(从二十二个主题复制),因为我只希望帖子出现在该页面上。我已将博客文章设置为显示在此页面上(来自设置页面),但仍然不会显示任何内容。
这是我用于显示博客文章的模板页面的代码。
知道有什么问题吗?
<?php
/**
* Template Name: blog
*
* Full width page template with no sidebar.
*
* @package Myfirsttheme
* @subpackage Template
*/
get_header(); ?>
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php else : ?>
<article id="post-0" class="post no-results not-found">
<div class="entry-content">
<p><?php _e( 'Apologies, but no results were found. Perhaps searching will help find a related post.', 'twentytwelve' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
<?php endif; // end current_user_can() check ?>
</article><!-- #post-0 -->
<?php endif; // end have_posts() check ?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_footer(); ?>