Set taxonomy slug as taxonomy title
The terms are inserted with wp_insert_term() and updated with wp_update_term(). There’s the pre_insert_term filter, where one can modify the term’s name but not the slug. If we dig further, we see that both functions call sanitize_term() that again calls the sanitize_term_field() function. There we have various filters available. Example #1 Here’s one combination if we … Read more