我正在尝试使用此页面中的代码:
在任何页面上显示博客帖子(带导航)http://digwp.com/2013/01/display-blog-posts-on-page-with-navigation/
我的目标是使页面只显示一个类别中的帖子。我还想将每页的帖子数量限制为5篇,并在底部设置分页链接。
这将显示所有类别的前5个帖子并对其分页:
<?php // Display blog posts on any page @ http://m0n.co/l
$temp = $wp_query; $wp_query= null;
$wp_query = new WP_Query(); $wp_query->query(\'showposts=5\' . \'&paged=\'.$paged);
while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
但是,当我尝试这样添加类别时:
<?php // Display blog posts on any page @ http://m0n.co/l
$temp = $wp_query; $wp_query= null;
$wp_query = new WP_Query(); $wp_query->query(\'cat=61\' , \'showposts=5\' . \'&paged=\'. $paged);
while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
我的页面上有5篇以上的帖子,没有分页。。。