您的代码无效(语法错误,缺少结束数组和分号),并且嵌套不正确-如果要正确缩进代码,可能会出现如下情况:
$args = array(
\'tag\' => \'tag-AAA,tag-BBB\',
array (
\'orderby\' => array(
\'title\' => \'ASC\',
\'post_date\' => \'DESC\',
)
),
);
查看如何
orderby
实际上不是
$args
? 您需要:
$args = array(
\'tag\' => \'tag-AAA,tag-BBB\',
\'orderby\' => array(
\'post_date\' => \'DESC\',
\'title\' => \'ASC\',
),
);
我也改变了顺序,所以帖子会先按日期排序,
then 按标题。