Add custom taxonomy fields when creating a new taxonomy

Solved!

add_action( 'create_category', 'save_extra_taxonomy_fields', 10, 2 );   

Props to the Category Meta plugin. I downloaded various category meta plugins from the WP repo, and this one has the ability to add the meta data on the Add New screen. I dug through the code and found the elusive create_{term} hook.

Leave a Comment