Home › Forums › ACF PRO › Ajax / Filter Relationship Field › Reply To: Ajax / Filter Relationship Field
Hi @aisforadam
If you’re able to save the value, I believe you can get the value in the “acf/fields/relationship/query” hook like this:
$args['meta_query'] = array(
array(
'key' => 'custom_acf_field',
'value' => get_field("custom_field_name", "option"),
'compare' => 'LIKE'
)
);
You can also save it as the current post/page custom field by providing the ID instead of “option” for the update_field() and get_field() functions.
I hope this helps.
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.