Support

Account

Home Forums ACF PRO Meta Query based on User field with multiple value Reply To: Meta Query based on User field with multiple value

  • Users are stored by ID and you need to use “LIKE” with quotes around the ID.

    an example:

    
    array(
      'key' => 'post_revised',
      'value' => '"'.$user_id.'"',
      'compare' => 'LIKE',
    ),