我想知道如何将可见帖子的限制数量设置到指定类别的页面中。
问问题
3321 次
2 回答
1
把它放在你的functions.php中
function main_query_mods( $query ) {
if(!$query->is_main_query()) {
return;
}
// show 15 posts per page if category has id 7
// check http://codex.wordpress.org/Conditional_Tags#A_Category_Page
if ( is_category('7')) {
$query->set('posts_per_page',15);
}
}
add_action( 'pre_get_posts', 'main_query_mods' );
于 2012-04-14T10:53:31.877 回答
0
你应该使用这个:
<?php $the_query = new WP_Query ('cat=7&posts_per_page=15'); ?>
<?php while ($the_query->have_posts()) : $the_query->the_post(); ?>
<div><?the_title(); //display post title?></div>
<div><?the_content(); //display post content?></div>
<?php endwhile; ?>
cat
如果添加到查询的帖子将选择随机帖子,则类别 ID
post_per_page
是限制。&orderby=rand
你可以在这里找到完整的文档:http: //codex.wordpress.org/Class_Reference/WP_Query
于 2012-04-14T10:44:55.153 回答