我正在尝试为我的主题创建一个博客页面,该页面是用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(); ?>
使用上述代码,博客页面显示标记为“博客”的我的帖子列表。但是,它没有显示我为页面本身编写的内容。有什么想法我需要包括哪些代码才能具有该功能吗?
当做