Support

Account

Home Forums General Issues Filter query by custom field and sort orderby another custom field Reply To: Filter query by custom field and sort orderby another custom field

  • This should do the trick:

    <?php
    
    $args = array(
      'post_type'      => $type,
      'post_status'    => 'publish',
      'posts_per_page' => -1,
      'meta_query'     => array(
        array(
          'key'        => 'banner',
          'compare'    => '=',
          'value'      => 1
        )
      ),
      'meta_key'       => 'start_time'
      'orderby'        => 'meta_value_num',
      'order'          => 'ASC'
    );
    
    ?>

    See the documentation here: http://www.advancedcustomfields.com/resources/how-to-query-posts-filtered-by-custom-field-values/