我从页眉上抄下这一行。二十世纪十年代的php加载自定义菜单。。。
<?php /* Our navigation menu.
If one isn\'t filled out, wp_nav_menu falls back to wp_page_menu.
The menu assiged to the primary position is the one used.
If none is assigned, the menu with the lowest ID is used. */ ?>
<?php wp_nav_menu( array( \'container_class\' => \'menu-header\', \'theme_location\' => \'primary\' ) ); ?>
我理解他们的后备计划,但对我来说,如果没有为我的自定义菜单选择器分配自定义菜单,我不想返回任何内容。确定自定义菜单是否有指定菜单的功能是什么?
最合适的回答,由SO网友:Manzabar 整理而成
从查看Codex, 您应该能够将fallback\\u cb参数传递为false,以使wp\\u nav\\u菜单不返回任何内容。比如:
<?php wp_nav_menu( array( \'container_class\' => \'menu-header\', \'theme_location\' => \'primary\', \'fallback_cb\' => FALSE ) ); ?>