Support

Account

Home Forums General Issues Date Picker: Query Born Today (over regular posts) Reply To: Date Picker: Query Born Today (over regular posts)

  • For the ACF field, to do something similar you would need

    
    $date_pattern = '__'.date('md');
    
    ......
    $query_args = array(
      'meta_query' => array(
        array(
          'key' => 'field_name',
          'value' => $date_pattern,
          'compare' => 'LIKE'
        )
      )
    );