I wonder if there is a way to automatically create category from my custom post type titles.
For example – if I create post named ‘sport’, the function will create a category – ‘sport’ automatically.
1 comment
Comments are closed.
I wonder if there is a way to automatically create category from my custom post type titles.
For example – if I create post named ‘sport’, the function will create a category – ‘sport’ automatically.
Comments are closed.
Hook into save_post, and check if the category already exists (to avoid double creation on post edit). If category doesn’t exist create it using
wp_insert_term
and assign to post usingwp_set_object_terms
If you want to set a custom taxonomy instead of the standard category replace
'category'
with the custom taxonomy name everywhereit appear in code above.