Matus Vrsansky
Matus Vrsansky

Reputation: 83

Can I add category to my custom taxonomy through some function in wordpress?

I use my custom taxonomy on Wordpress project and I need to create new category through code.

enter image description here

Is that even possible? I can`t google some solution for my problem.

Upvotes: 0

Views: 34

Answers (1)

hostingutilities.com
hostingutilities.com

Reputation: 9519

Use wp_insert_term

wp_insert_term( 'category_name', 'your_custom_taxonomy' );

Upvotes: 1

Related Questions