Support

Account

Home Forums Backend Issues (wp-admin) Filtering list query of Relationship in a custom taxonomy term Reply To: Filtering list query of Relationship in a custom taxonomy term

  • Try adding the post_type or the meta_key

       	$args['meta_query'] = array(
       	    'post_type' => 'your_post_type',
       	     'meta_query' => array(
                   'key' => 'color',
                   'value' => 'blue',
                    'compare' => '!='
    	       )
        );
        return $args;