wordpress上的query_posts()没有显示在' order'

时间:2016-01-01 17:52:04

标签: php wordpress custom-post-type

我想从最新帖子以DESC顺序显示帖子。我一直在使用query_posts()来获取帖子。但是我没有从查询中获得所需的结果。我正在使用:

<?php 
   query_posts( array( 'post_type' => 'testimonials', 'showposts' => 100, 'orderby' => 'date', 'order' => 'DESC' ) );
   if ( have_posts() ) : while ( have_posts() ) : the_post();
?>

我做错了什么?

0 个答案:

没有答案