This answer 我认为这是很好的掩饰:
$args = array(
\'post_type\' => \'brand\',
\'posts_per_page\' => 999,
\'meta_query\' => array(
\'relation\' => \'OR\',
array(
\'key\' => \'wpcf-sorter\',
\'compare\' => \'NOT EXISTS\',
),
array(
\'key\' => \'wpcf-sorter\',
\'compare\' => \'EXISTS\',
),
),
\'orderby\' => array( \'meta_value\' => \'DESC\', \'date\' => \'DESC\' ),
);
这应该给你所有的帖子
wpcf-sorter
-先设置值,然后设置其余值,这两个值都按日期排序。