最終更新日順に投稿を表示する必要があります。そこで、以下のコードを使用しました。
$args = array(
'post_type' => $post_type,
'numberposts' => '2',
'orderby' => 'modified',
'order'=> 'ASC',
);
$the_query = new WP_Query( $args );
しかし、上記のコードには更新が見つかりませんでした。'orderby' => 'modified'
引数の代わりに何か他のものを使用する必要があります。