I'm trying to import some terms for custom taxonomies. Those terms have custom fields(added with ACF). I know I can insert terms with:
wp_insert_term( $term, $taxonomy, $args = array() );
I can't add values for the custom fields though.
Is there some way I can add custom fields to this function? Or use CSV somehow?
Thanks!