当您在 Wordpress 中创建帖子时,有一个名为“订单”的字段。
我怎样才能使它工作,例如,我把5
帖子5th
放在页面上显示的位置?
我试过这个但没有奏效:
<?php
$args = array(
'post_type' => 'team',
'posts_per_page' => 30,
'orderby' => 'meta_value_num',
'order' => 'ASC'
);
$the_query = new WP_Query($args);
if ($the_query->have_posts()) : while ($the_query->have_posts()) : $the_query->the_post();
?>