Try adding add_theme_support( 'menus' );
in functions.php
I haven’t taken the time to investigate. I suspect it depends on what theme is being resolved and how the functions.php
is setup. also try to disable auto fill form browser.
did you register the menu?? if not then add this to your functions.php
function my_theme_setup() {
register_nav_menus( array(
'header' => 'Header menu',
'footer' => 'Footer menu'
) );
}
add_action( 'after_setup_theme', 'my_theme_setup' );
Related Posts:
- Add separator to admin submenu
- Remove Pagination in Appearance -> Menus -> Categories
- How do I fix this error: Warning: invalid argument supplied for foreach()?
- Is it possible to add a filter for the output of nav-menu items in admin?
- How to make pages metabox display all hierarchy in menu admin?
- How can I get an array/list of all current WordPress Admin Menu items?
- how to only add a top-level admin menu without it creating a sub-level-menu
- Theme menu in Admin Panel
- Hiding Admin Page While Keeping Menu Expanded
- Wp menu add page link as custom empty link
- Change name & menu_name for Profile in the default menu, w/o altering core files?
- WordPress menu not loading in the admin side appearence-> menu tab
- Programmatically add existing pages and subpages to Appearance Menu
- WordPress Plugin menu position overwrite other item
- How to remove menu installed in wp-admin by a theme? [closed]
- enqueue script during add menu items means before save menu items
- WordPress menu items automatically becoming empty custom links
- Restrict user to edit only edit a certain menu
- Need Help Regarding Menu Magement in admin
- Roles see different top menu (nav menu)
- how to create pages and link them to a menu
- Dashicons not showed for admin menu
- wp_is_mobile() inside js
- How to create menu in Word Press 4.2.2?
- Appearance > Menus
- Removing menu item doesn’t get removed on edit post
- Is It Possible To A Link To The Homepage From The Admin Sidebar?
- How to let the role “editor” to control the menu?
- Retrieving a list of menu items in an array
- Add Javascript to WordPress Menu
- Add custom menu item using wp_nav_menu_items filter
- Custom Post Types posts as submenus in Nav Menu
- Filter out built-in wp_nav_menu classes but keep custom class
- How to get a different mobile menu than desktop menu in the twentytwelve child theme
- renaming an admin menu item with decimal array index number
- Getting URL value from menu item by ID
- Adding html elements to wp nav menu
- Bar separated navigation by extending Walker_Nav_Menu
- insert element inside wp menu list item
- WordPress Menu Disappears when $query->query_vars[‘meta_key’] is set
- how do I delete (not exclude) a menu item from navigation bar
- show only a given level in nav menu
- How to style current page menu item when using a walker
- Anchor only wp_nav_menu
- Getting post content within wp_nav_walker
- Nav Walker current menu item not displaying
- Removing strip_tags not working on nav_menu_description
- Keeping ‘current-menu-item’ highlight of navigation menu?
- Hide Menu Unless Logged In
- Possible to add a dynamic link to a sub-menu via wp_nav_menu_items?
- Add dynamic Sitemap to footer
- How do I separate link levels in a custom menu walker?
- Possible Menu Hack?
- how can i add css class on current page in wordpress wp_nav_menu
- How to rewrite the output of wordpress nav menu?
- Return Page/Post ID’s of Child WP_Nav_Menu items
- I need my dropdown sub-sub-menu box to show sub-menu title above
- Custom Links menu items include in Search Results
- When clicking on menu item not going to specific page
- Menu items suddenly are displayed all over the page [closed]
- Custom navigation structure with walker class
- CSS Classes (optional) on menu is not showing
- Why is only the first operation run in my loop – except for on the last repeat? [closed]
- Move Sticky Nav Menu Below WordPress Tool bar when tool bar enabled
- Prevent menu from loading in a page template [duplicate]
- How to hide a menu from public, but share content with a private link [closed]
- Add custom link on the fly to nav menu
- URL links consistent with menus?
- Strange menu behaviour wordpress admin [duplicate]
- How to check if current page is a parent item or child item in a given menu
- changing the labels inside appearance -> menus for some for the fields
- Lost admin “manage_link” capability WordPress. No “Links” menu item in admin menu
- How to add active class to separate page link?
- dropdown menu, with walker
- Add function to custom menu
- Custom menu with additional logic for display
- Menu item that hides when you click the previous submenu
- Putting footer links into different columns
- adding drop down menu item to existing menu
- wordpress walker add class to submenu a href
- Display searchform in the menu
- Unable to remove page from primary menu
- Show navigation header menu by post and categery
- How to add a toggle on the left side of my page?
- How to add buddypress sub-menu items to other menus
- Custom location for menu
- Always show wordpress submenu on responsive header menu
- add custom entries to menu options
- Showing a link with Javascript based on log-in status
- Building Menus with the latest posts included
- Cannot control wp_nav_menu properly
- How to add drop down sub menu from database fields in the particular menu slug
- wordpress superfish dropdown menu
- Drop down menus css in custom menus
- Creating a custom menu
- How to change the markup created by menu item only on chosen items?
- How to disable permalink of a particular menu item?
- child theme font awesome icons not working
- add dynamic ID for wp_nav_menu after and before
- How to replicate a mobile menu from a site to a wordpress site [closed]