I've created a custom taxonomy and I want to add it as an option for custom menus (under Appearance > Menus). How do I get it to show up there (see the illustration, I want it to show up where the red square is).
I've created a custom taxonomy and I want to add it as an option for custom menus (under Appearance > Menus). How do I get it to show up there (see the illustration, I want it to show up where the red square is).
Share Improve this question asked Jun 8, 2011 at 4:55 cmccullohcmcculloh 3091 gold badge3 silver badges12 bronze badges 1- 1 Check "Screen options" on the "Menu" page. That worked for me. Its true! – Lucas Garcia Commented Jul 4, 2019 at 13:55
2 Answers
Reset to default 13Your custom taxonomy should show up as an option for custom menus, if you have
'show_in_nav_menus' => true
as a parameter when you register your post type with register_post_type()
. You can check all the available parameters in the codex entry http://codex.wordpress/Function_Reference/register_post_type#Arguments
Check "Screen options" on the "Menu" page. That worked for me.