Wordpress orderby date not working
Somehow this doesn't wo开发者_如何学Crk on my server
$query = new WP_Query( array ( 'orderby' => 'date', 'order' => 'DESC' ) );
It works in the local development environment but not live...
How could this be, posts are always sorted oldest to newest instead
Try to replace date with post_date.
Try to Confirm the name of db column is date
, or something other like post_date
.
精彩评论