我有一个自定义帖子类型,它会倒置显示我的所有条目,这意味着第一个条目最后显示在我的实际首页上 - 有没有办法更改排序顺序?
我的代码如下:
<?php global $post; ?>
<ul class="menu-items">
<?php
$menuloop = new WP_Query(array(
'posts_per_page' => -1,
'post_type' => 'menu',
'tax_query' => array(
// Note: tax_query expects an array of arrays!
array(
'taxonomy' => 'menu_type', // my guess
'field' => 'slug',
'terms' => $menuname_category
)
),
));
?>
<?php if ( have_posts() ) : while ( $menuloop->have_posts() ) : $menuloop->the_post(); ?>
<li>
<div class="grid2column"><?php the_title(); ?></div>
<div class="grid2column lastcolumn"><?php if(get_post_meta($post->ID, 'menuoption_menu_pricing', true)): ?><?php echo get_post_meta($post->ID, 'menuoption_menu_pricing', true) ?><?php endif; ?></div>
<div class="clearfix"></div>
<div class="item-description-menu"><?php echo get_the_excerpt(); ?></div>
</li>
<?php endwhile; ?>
<?php endif; ?>
</ul>