Support

Account

Home Forums ACF PRO Meta_query to check if current user is in relational User field Reply To: Meta_query to check if current user is in relational User field

  • I had initially tried that, but it didn’t work. I discovered that using get_posts() instead of WP_Query() worked, but it required nesting the meta_query inside of a second array.

    Here’s the code that worked for me:

    $job_posts = get_posts(array(
      'post_type' => 'job',
      //Only grab jobs where current user ID is in the team field
      'meta_query' => array(
        array(
          'key' => 'team',
          'value' => '"'.$current_user->ID.'"',
          'compare' => 'LIKE',
        )
       )
    ));