Reputation: 83
I use my custom taxonomy on Wordpress project and I need to create new category through code.
Is that even possible? I can`t google some solution for my problem.
Upvotes: 0
Views: 34
Reputation: 9519
Use wp_insert_term
wp_insert_term( 'category_name', 'your_custom_taxonomy' );
Upvotes: 1