Answers for "get menu title wordpress"

PHP
0

how to access the name of menu in worpress

wp_get_nav_menu_name($location)
Posted by: Guest on October-17-2020
0

how to access the name of menu in worpress

$menu_location = 'header';

$menu_locations = get_nav_menu_locations();

$menu_object = (isset($menu_locations[$menu_location]) ? wp_get_nav_menu_object($menu_locations[$menu_location]) : null);

$menu_name = (isset($menu_object->name) ? $menu_object->name : '');

echo esc_html($menu_name);
Posted by: Guest on October-17-2020

Browse Popular Code Answers by Language