如何判断用户是否已进入并创建了菜单 时间:2013-06-04 作者:TheWebs 默认情况下,如果用户没有创建页脚或顶级菜单,那么对于页脚,WordPress将使用页面等默认内容“创建”菜单。我不想发生这种事。我想做如下事情:if user has not set a menu for footer display a message telling them they should. else display said menu. end 我该怎么做? 1 个回复 SO网友:Ravinder Kumar 如果他们的位置有任何菜单,请签入页脚 <?php if ( has_nav_menu( $location ) ) { //add your footer menu or do something }else{ //display a message telling them they should } ?> Important Link:has_menu_nav 结束 文章导航