如何显示页面内容和帖子列表

时间:2015-10-24 作者:Mike

我正在尝试为我的主题创建一个博客页面,该页面是用Bootstrap 3创建的。十、我的page-blog.php 包括

<?php get_header(); ?>
    <div class="col-md-9">
    <?php 
        $list_of_posts = new WP_Query( array (\'category_name\' => \'blog\'));
        if ( $list_of_posts->have_posts() ) : while ( $list_of_posts->have_posts() && $i < 10) : $list_of_posts->the_post(); ?>
        <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
        <?php the_content(); ?>
        <?php $i++; endwhile; ?>
        <?php endif; ?>
    ?>
    </div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
使用上述代码,博客页面显示标记为“博客”的我的帖子列表。但是,它没有显示我为页面本身编写的内容。有什么想法我需要包括哪些代码才能具有该功能吗?

当做

1 个回复
SO网友:Mike

没关系,我找到了答案。我应该在下面添加以下内容<div class="col-md-9">

<div id="page-<?php the_ID(); ?>">
<?php
if (have_posts()) : while (have_posts()) : the_post();
        if ( has_post_thumbnail() ) :
            the_post_thumbnail(\'thumbs\');
        endif;
        echo get_the_date(\'jS F Y\');
        the_title();
        the_content();
    endwhile;
endif;
?>
</div>

相关推荐