Support

Account

Home Forums ACF PRO Relationship Field Posts – WP_Query Orderby Backend Order Reply To: Relationship Field Posts – WP_Query Orderby Backend Order

  • Ok, I figured this out. Needed to change orderby to ‘orderby’ => ‘post__in’

      if($ids){
      $args = array(
          'post_type' => 'any',
          'posts_per_page' => 6,
          'post__in' => $ids,
          'post_status' => 'publish',
          'orderby' =>  'post__in',
          'order' => 'ASC'
      );
      } else{
          $args = array();
      }