“Menus” settings disappeared from WordPress admin panel

0 Shares
0
0
0

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' );
?>