Home › Forums › General Issues › How to exclude posts from loop that are in a relationship › Reply To: How to exclude posts from loop that are in a relationship
Hi @buckdanny
Hmm… Try this, in pre_get_posts
grab the value of the relationship field using get_field(...)
. get_field(...)
will return an array of the selected posts. Loop through this array and create your meta_query $args dynamically. Then in your meta_query, use the “NOT LIKE” compare instead of the “LIKE” compare so that the query can exclude the selected posts.
I’ve never tried this but I think it should work. Give it a try and let me know how it goes 🙂
You can read more on meta_query here: https://codex.wordpress.org/Class_Reference/WP_Meta_Query
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.