Support

Account

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;
    }