在Wordpress的自定义分类页面中每页显示帖子数

时间:2019-12-17 05:02:12

标签: wordpress custom-post-type taxonomy

我的functions.php中具有以下功能,该功能可以更改自定义帖子类型存档页面中每页显示的帖子数。我还如何定位相应的分类页面(taxonomy-case.php)?是否有类似于“ is_post_type_taxonomy”的内容?

// Post number limits
function my_cptui_change_posts_per_page( $query ) {
    if ( is_admin() || ! $query->is_main_query() ) {
       return;
    }

    if ( is_post_type_archive( 'case' ) ) {
       $query->set( 'posts_per_page', 8 );
    }
}
add_filter( 'pre_get_posts', 'my_cptui_change_posts_per_page' );

2 个答案:

答案 0 :(得分:2)

is_tax()函数应该可以完成您想要的工作。

// Post number limits
function my_cptui_change_posts_per_page( $query ) {
    if ( is_admin() || ! $query->is_main_query() ) {
       return;
    }

    if ( is_post_type_archive( 'case' || is_tax( 'case' ) ) ) {   // Or whatever your taxonomy name is
       $query->set( 'posts_per_page', 8 );
    }
}
add_filter( 'pre_get_posts', 'my_cptui_change_posts_per_page' );

答案 1 :(得分:2)

在函数中添加以下代码,并检查其是否正常运行。不要忘了用您的分类名称替换您的类别。

if (is_tax( 'your-category' ) ) { 
   $query->set( 'posts_per_page', 8 );
}