我正在学习WordPress,但我不明白我在创建一个主题时犯了什么错。下面是我如何在functions.php
文件
function my_custom_theme_setup() {
add_theme_support(\'menus\');
register_nav_menu(\'header\', \'Menu that goes in the header of the website\');
register_nav_menu(\'footer\', \'Menu that goes in the footer of the website\');
}
add_action(\'init\', \'my_custom_theme_setup\');
下面是我如何插入它的
header.php
:
<?php wp_nav_menu(array(\'menu\' => \'header\',\'menu_class\' => \'header__nav\'));?>
下面是我如何在管理界面中配置菜单的:
是的,两个菜单的内容都不同。页脚菜单正常,但页眉菜单不正常。我做错了什么?