Answer the question
In order to leave comments, you need to log in
How to filter posts by ACF field with type "Relationship" via WP_Query?
There is an ACF towns-field of relationship type with a towns record type. How to make a selection of records in a set of cities that have, for example, Moscow?
$args = array(
'post_type' => 'offers',
'meta_query' => array(
array(
'key' => 'towns-field',
'value' => 'Москва',
'compare' => 'IN',
),
),
);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question