Home › Forums › General Issues › query events by user field › Reply To: query events by user field
Hi @fonty87
Please use the code tags when you paste code. Elliot has not fixed this issue yet but if you post weirdly formatted code without the code tags you’ll break the site layout making it impossible to answer you 🙂
I’ve fixed your post now after tinkering a bit with the CSS to be able to hit the edit button 😉
If you’re using the User field in ACF to store the author you need to query it by the user ID, not the display name.
I think this change should do it (if that’s how you set it up)
<?php
$args = array(
'post_type' => 'event', // required
'suppress_filters' => false, // required
'posts_per_page' => 10000, // Should never be set to -1 as it's a risk not setting boundaries. Good code practise!
'meta_query' => array( // Use meta query instead
array(
'key' => 'vortrag_von',
'value' => $author->ID,
'compare' => '='
)
)
);
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!
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 Privacy Policy. If you continue to use this site, you consent to our use of cookies.