Im looking a way to filter the Taxonomy Filed Select, i need to choose wich taxonomy to show in the frontend select.
Any ideas?
Thanks so much
im tryng this
add_filter(‘acf/fields/taxonomy/wp_list_categories’, ‘my_taxonomy_args’, 10, 2);
function my_taxonomy_args ( $args, $field ) {
// do stuff to $args
$args = array(
‘exclude’ => 19,
);
return $args;
}
without any result.