尝试添加add_theme_support( \'menus\' );
在里面functions.php
我没有花时间调查。我怀疑这取决于解决的主题以及functions.php
正在设置。同时尝试禁用自动填充表单浏览器。
你注册菜单了吗??如果没有,则将其添加到functions.php
function my_theme_setup() {
register_nav_menus( array(
\'header\' => \'Header menu\',
\'footer\' => \'Footer menu\'
) );
}
add_action( \'after_setup_theme\', \'my_theme_setup\' );