php 获取基于主题位置的菜单标题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 获取基于主题位置的菜单标题相关的知识,希望对你有一定的参考价值。

<?php

$theme_location = 'featured';
$theme_locations = get_nav_menu_locations();
$nav_menu_ID = $theme_locations[$theme_location];
$nav_menu_title = wp_get_nav_menu_object( $nav_menu_ID );

if ( has_nav_menu( 'featured' ) ) {
  
  // Echo out the title, should probably escape the output
  echo '<h3 class="widget-title">' .$nav_menu_title->name. '</h3>';

  genesis_nav_menu( array(
    'theme_location'	=> 'featured',
    'container'			=> 'div',
    'menu_class'		=> 'featured-client',
    'depth'				=> 1
  ) );
  
}

以上是关于php 获取基于主题位置的菜单标题的主要内容,如果未能解决你的问题,请参考以下文章

主题激活时自动在“主菜单”位置设置菜单

php 菜单获取菜单位置按位置获取项目

WordPress主题制作:菜单制作和使用

WordPress主题开发:开启导航菜单功能

php 按位置获取菜单名称

WordPress 页脚菜单显示在顶部菜单位置