我需要显示3个查询的结果,我进行了此查询,但我无法显示结果,我抛出了一个没有我想要的顺序的表。以下是查询:
$args3 = array(
\'post_type\' => $directory_url_2, // enter your custom post type
\'paged\' => $paged,
\'post_status\' => \'publish\',
\'meta_query\' => array(
\'post_type\' => $directory_url_2, // enter your custom post type
\'paged\' => $paged,
\'post_status\' => \'publish\',
\'relation\' => \'AND\',
\'premium_clause\' => array(
\'meta_key\' => \'premium\',
\'meta_compare\' => \'LIKE\',
\'orderby\' => array(\'_post_views\' => \'DESC\' , \'post_name\' => \'ASC\')
),
\'other_clause\' => array(
\'meta_key\' => \'premium\',
\'meta_compare\' => \'NOT EXISTS\',
\'orderby\' => array(\'_post_views\' => \'DESC\' , \'post_name\' => \'ASC\')
),
\'orderby\' => array(
\'premium_clause\' => \'ASC\',
\'other_clause\' => \'ASC\',
),
),
);