Home › Forums › General Issues › relationship filter – query by page-template? › Reply To: relationship filter – query by page-template?
I don’t understand why, but it appears that you must supply a 'relation'
value. Try this
// relationship field "Fächer"
// the key of the field "Fächer"
add_filter('acf/fields/relationship/query/key=field_5593ec53f0a0c', 'my_relationship_query', 10, 3);
function my_relationship_query($args, $field, $post) {
// show only pages with this special template
$args['meta_query'] = array(
'relation' => 'AND',
array(
'key' => '_wp_page_template',
'value' => 'page-fach.php',
'compare' => '='
)
);
return $args;
}
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.