Ading a new Custom Post type I need to have the existing category and post_tag taxonomies. My code is here
register_post_type('im_directory', array(
'label' => __('Directory'),
'singular_label' => __('Directory'),
'public' => true,
'show_ui' => true, // UI in admin panel
'_builtin' => false, // It's a custom post type, not built in!
'_edit_link' => 'post.php?post=%d',
'capability_type' => 'post',
'hierarchical' => true,
'supports' => array('title','editor','thumbnail','excerpt'),
'rewrite' => array("slug" => "directory"),
'taxonomies' => array('post_tag','category'),
'menu_position' => 5
));
The problem is that I am not seeing the Category and Tag when I go to add a new post. Any ideas?