特定のカテゴリのページに表示される投稿の制限数を設定するにはどうすればよいですか。
質問する
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 に答える