我正在尝试通过ACF数字字段对wp_query的结果进行排序,但无论如何都要进行排序。将订单从ASC更改为DESC但仍然相同。
$counter = 0;
WP_Query arguments
$args = array (
'post_status' => 'publish',
'post_type' => 'teams',
'meta_key' => 'standings-points',
'orderby' => 'meta_value_num',
'order' => 'DESC'
);
// The Query
$query = new WP_Query( $args );
// The Loop
if ( $query->have_posts() ) : while ( $query->have_posts()) : $query->the_post(); $counter++; ?>
<td style=""><?php echo $counter; ?></td>
<td style="text-align: left;"><?php the_title();?></td>
<td><?php the_field('standings-points');?></td>
<?php endwhile; endif; wp_reset_postdata(); wp_reset_query();
有人能指出我正确的方向吗?