我需要按自定义帖子类型对搜索结果进行排序。问题是:订单是定制的。
我有5种不同的帖子类型,我得到的顺序如下:
艺术家作品页面发布我希望顺序如下:
艺术家贴子,艺术品,出版物,页面,到目前为止,这些元素按帖子类型分组,并按标题排序。精彩的现在我只需要定制订单。
有什么提示吗?
add_filter( \'posts_orderby\', \'order_search_by_posttype\', 10, 2 );
function order_search_by_posttype( $orderby ){
global $wpdb;
if( ! is_admin() && is_search() ) :
$orderby = "{$wpdb->prefix}posts.post_type ASC, {$wpdb->prefix}posts.post_title ASC";
endif;
return $orderby;
}