I need to change some menu items on my WordPress site, but the option has disappeared from the Admin area. According to the documentation, a Menus option should appear under the Appearance menu, but it is not there in my installation:
How can I get Menus to appear where it is supposed to?
Go to your WordPress dashboard and head to Appearance, then Menus. Make sure that your menu is there and that you didn't accidentally delete it. Click on the tab Manage Locations. Now, the exact screen will depend on your theme, but you should see something like Header Menu or Primary Menu.
To check this, simply go to Users » Profile in your WordPress admin panel and then locate the 'Toolbar' option. You need to make sure the box that says 'Show Toolbar when viewing site' is checked. Then, click the 'Update Profile' button at the bottom of the page to save your settings.
The problem may have been caused by a rogue plugin overwriting the functionality, but I managed to fix it by adding a functions.php
file to my custom theme (in the root directory) with the following code:
<?php
add_theme_support( 'menus' );
?>
Now Menus has appeared again:
Source: Function Reference/add theme support
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With