0

我正在使用@Ellum2009 (http://stackoverflow.com/q/4160319/705100) 的此解决方案按分类术语输出自定义帖子类型。该示例取自链接:

<?php $posts = new WP_Query(array( 
   'taxonomy' => 'type-mario',
   'term' => 'games',
   'posts_per_page' => 10 
)); ?>
<p>Mario games</p>
<?php while ( $posts->have_posts() ) : $posts->the_post(); ?>
  <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    <h2><?php the_title(); ?></h2>
  </div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>

但是,此解决方案不允许对条目进行进一步排序。它只是首先输出它们的最后一个条目。我想我可以为每个术语创建子分类并将它们标记为“第一”、“第二”、“第三”等。然后用户只需选中管理界面中的相应框来控制排序顺序.

我的问题是,我将如何输出排序后的内容?

谢谢!

4

1 回答 1

1

但是,我对分类学知之甚少,WP_Query 确实支持 orderby 和 order 参数-这些在您的情况下不起作用吗?

<?php $posts = new WP_Query(array( 
   'taxonomy' => 'type-mario',
   'term' => 'games',
   'posts_per_page' => 10,
   'orderby' => 'date',
   'order' => 'ASC'
)); ?>
<p>Mario games</p>
<?php while ( $posts->have_posts() ) : $posts->the_post(); ?>
  <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    <h2><?php the_title(); ?></h2>
  </div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
于 2012-03-22T22:08:45.340 回答