ワードプレスのメインループの並び順を変更する

  • WP Query であれば投稿の並び順などを柔軟に指定できる
  • カテゴリー別一覧などのメインループの並び順に関しては、functions.php で定義する
// メインループの並び順を変更 ////////////////////////////////////
function twpp_change_sort_order( $query ) {
  if ( is_admin() || ! $query->is_main_query() ) {
    return;
  }
  if ( $query->is_home() ) {
    $query->set( 'order', 'DESC' );
    $query->set( 'orderby', 'modified' );
  }
}
add_action( 'pre_get_posts', 'twpp_change_sort_order' );