Home › Forums › General Issues › Reverse Relationship Meta Query › Reply To: Reverse Relationship Meta Query
You must use WP_Query to query the “accounts” post type using a meta query to query by the “bank” relationship field.
// simplest form
$args = array(
'post_type' => 'accounts', // replace w/your post type
'posts_per_page' => -1,
'meta_query' => array(
array(
'key' => 'bank' // replace with your relationship field name
'value' => '"'.$post=ID.'"', // global post ID of current post
'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!
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.