wordpress自定义文章类型分类列表显示文章数量

如题:

代码如下:

add_filter('pre_get_posts','wbox_store_showposts_num');
function wbox_store_showposts_num($query) {
    if( get_query_var('post_type') == 'store'){//store替换成你的文章类型
        $query->set('posts_per_page',20); //20替换成你想要的显示数量
    }
    return $query;
}

 

点赞

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

3 5 =