如何使用WP_QUERY更改以下检索方法中的顺序(ASC和DESC)? 时间:2011-01-24 作者:janoChen 以下代码仅检索具有自定义分类法“Slider”的自定义帖子类型我想把他们的订单改成ASC。代码:<?php // Retrive custom post type with a custom taxonomy assigned to it $posts = new WP_Query(\'post_type=page_content&page_sections=Slider (Front Page)\') ?> <?php while ( $posts->have_posts() ) : $posts->the_post(); ?> <?php the_content(); ?> <?php endwhile; ?> <?php wp_reset_query(); ?> 不确定是否应该使用数组(不确定如何使用)。有什么建议吗? 2 个回复 最合适的回答,由SO网友:Bainternet 整理而成 只需更改代码中的这一行: $posts = new WP_Query(\'post_type=page_content&page_sections=Slider (Front Page)\') ?> 对此: $posts = new WP_Query(\'post_type=page_content&page_sections=Slider (Front Page)&order=ASC\') ?> 基本上,它添加了可以取两个值(ASC、DESC)的顺序参数。希望这有帮助。 SO网友:Rarst 您希望实现哪个订单?按时间顺序的按字母顺序排列的在任何情况下,请参见Order & Orderby Parameters 在Codex中查找可用参数。 结束 文章导航