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 don’t really see enough here to tell what could be causing an infinite loop. The only error that I see is with the meta_query. If this is a user field then ACF stores a serialized array of user IDs and you need to do something like
$query_args = array(
'numberposts' => -1,
'post_type' => 'job',
//Only grab jobs where current user ID is in the team field
'meta_query' => array(
'key' => 'team',
'value' => '"'.$current_user->ID.'"',
'compare' => 'LIKE',
)
);
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
🚀 ACF & ACF PRO 6.0.7 are now available.
— Advanced Custom Fields (@wp_acf) January 18, 2023
✨This release contains bug fixes and improvements while we continue to work on the next major release of ACF.https://t.co/wQgAOpwmUI
© 2023 Advanced Custom Fields.
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Cookie Policy. If you continue to use this site, you consent to our use of cookies.