在通过查询获取帖子时,我尝试了很多方法对帖子进行排序,但如果我使用DESC
:
我的代码:
<?php
// the query
$args = array(
\'orderby\' => array(
\'post_date\' => \'DESC\',
)
);
// The Query
$the_query = new WP_Query( $args );
// The Loop
if ( $the_query->have_posts() ) {
echo \'<ul>\';
while ( $the_query->have_posts() ) {
$the_query->the_post();
echo \'<li>\' . get_the_title() . \'<br>\' . get_the_date().\'</li>\';
}
echo \'</ul>\';
} else {
// no posts found
}
/* Restore original Post Data */
wp_reset_postdata();
?>
此外,如果我通过ASC订购,那么订单将是正确的
DESC
不起作用。我做错了什么?