我正在使用以下内容,但我的帖子仍按时间顺序排列(从旧到新)。我的目标是在顶部发布最新帖子。(从新到旧)
$catquery = new WP_Query( array (
'cat'=>'27',
'post_type'=>'news',
'orderby' => "post_date",
'order' => "DESC" )
);
while($catquery->have_posts()) : $catquery->the_post();
<p class="date"> <?php the_date(); ?> </p>
<h3><?php the_title(); ?></h3>
<p> <?php the_content('Read More', FALSE); ?>
我也尝试过orderby' => "date"
,但没有运气。如何解决这个问题?