Custom menus don't show up in admin panel
-
Hi wordpress-pros,
I’m writing my own theme and i neet to use custom menus.
So i activated Appearance > Menus with my functions.php file:function register_custom_menu() { if ( function_exists('register_nav_menu') ) { register_nav_menus(array( 'main' => __( 'Hauptnavigation' ), 'sub' => __( 'Seitennavigation' ) )); } unregister_nav_menu( 'primary' ); }
And I’m calling that method from my default-filters.php file.
But when i create a custom menu with some pages it doesn’t show up anywhere in Appearance > Menus. So i cannot rename, change or delete it.
Has anybody experienced the same problem and knows the solution how to get the menus appear?
P.S.: I don’t use any plug-ins.
Sorry if somebody posted the same issue, but I didn’t find it…
Thanks in advance!
Christian
- The topic ‘Custom menus don't show up in admin panel’ is closed to new replies.