あなたはもっと下の機能チェックを制限したい場合は、この1
add_action('pre_get_posts', 'myposts_limit');
function myposts_limit($query) {
if(!is_admin() && is_tax('featured')) { //change featured with your custom taxonomy
$query->set('posts_per_page', 10); //10 posts on your custom taxonomy
}
}
のような機能を使用することができます。
function myposts_limit($query) {
if($query->is_category() && !is_admin()):
$query->set('posts_per_page', 14); //14 posts on category
return;
endif;
if($query->is_search() && !is_admin()):
$query->set('posts_per_page', 20); //20 posts on search
return;
endif;
if($query->is_tag() && !is_admin()):
$query->set('posts_per_page', 30); //30 posts on tag template
return;
endif;
if(!is_admin() && is_tax('featured')) { //change featured with your custom taxonomy
$query->set('posts_per_page', 10); // 10 posts on your custom taxonomy
}
}
をカスタムに表示されているどのように多くの記事を制限する方法を求めていますwp-query? –