在我的搜索页面上,我想按帖子类型对帖子进行分组。为此,我有以下几点:
add_filter(\'posts_groupby\', \'group_by_post_type\' );
function group_by_post_type( $groupby ) {
global $wpdb;
if( is_search() ) {
return $wpdb->posts.\'.post_type\';
}
}
在添加过滤器之前,我有9个结果,但是在添加过滤器之后,我只有3个结果,每个帖子类型一个。我做错了什么?