搜索主题中此处给出的代码functions.php
文件并按此处所示注册第二个中堂菜单。
register_nav_menus( array(
\'primary-nav\' => "Primary Menu", // file may have this with different name
\'sidebar-nav\' => "Sidebar Menu" //add this line
) );
使用自定义菜单小部件在侧栏中显示它。或者,如果要编辑主题模板,请在第二个菜单出现的位置输入以下代码
<?php
wp_nav_menu( array(
\'theme_location\' => \'sidebar-nav\'
) );
?>
现在你可以
Menu Appearance Screen
为其分配项目。