我必须按最后修改日期显示帖子。所以我使用了下面的代码。
$args = array(
'post_type' => $post_type,
'numberposts' => '2',
'orderby' => 'modified',
'order'=> 'ASC',
);
$the_query = new WP_Query( $args );
但是我在上面的代码中找不到任何更新。'orderby' => 'modified'
我应该在论点中使用其他东西而不是。