custom Taxonomy doesn't appear in the custom menu
-
Hi everyone, I’m working on this website and I’m running into some issues with custom taxonomies and posts, the thing is that in the local host everything appear where expected but online suddenly the custom taxonomies doesn’t appear in the custom menus to add it as a menu item, this is the taxonomy definition I’m using on the function.php on my template
register_taxonomy( 'Page Category', array('page'), array( 'public'=>true, 'hierarchical' => true, 'labels'=>array( 'name' =>__('Page Categories'), 'singular_name' =>__('Page Category'), 'search_items' =>__('Search Page Categories'), 'popular_items' =>__('Popular Page Categories'), 'all_items' =>__('All Page Categories'), 'parent_item' =>__( 'Parent Page Category' ), 'parent_item_colon' =>__( 'Parent Page Category:' ), 'edit_item' =>__( 'Edit Page Category' ), 'update_item' =>__( 'Update Page Category' ), 'add_new_item' =>__( 'Add New Page Category' ), 'new_item_name' =>__( 'New Page Category Name' ), ), 'query_var'=>'page_categories', 'rewrite' => array( 'slug' => 'page_categories', 'with_front' => false ), 'show_ui' => true, ) );
I really appreciate if anyone can help me with this issue. thanks in advance
- The topic ‘custom Taxonomy doesn't appear in the custom menu’ is closed to new replies.