Support

Account

Home Forums General Issues Filter Taxonomy Field Select

Helping

Filter Taxonomy Field Select

  • 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.

Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘Filter Taxonomy Field Select’ is closed to new replies.