Is there any way to create custom post type with separate categories in wordpress
?
Example:
Post type “News” should have categories “World” and “Local“.
Post type “Products” should have categories
: “Software” and “hardware”
and I do not want to have option to set “Software” category to “News” post type.
Is there any way to handle this?
You can create custom post type by following example code:
the wordpress site link :
http://codex.wordpress.org/Function_Reference/register_post_type
For the Create separate category for particular post use following link:
http://codex.wordpress.org/Function_Reference/register_taxonomy
Example code: