Home › Forums › General Issues › Displaying Related Posts – Relationship › Reply To: Displaying Related Posts – Relationship
Ok, so you want to get all posts type competitions that share the same brand as the current post? If so, you would need a meta_query:
https://www.advancedcustomfields.com/resources/query-posts-custom-fields/
$query = new WP_Query(array(
'post_type' => 'competitions',
'posts_per_page' => 5,
'post_status' => 'publish',
'meta_key' => 'related_brand',
'meta_value' => get_field('related_brand') // This is related brand of current post.
));
See if the query returns anything back?
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.