Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

how to access the name of menu in worpress

<?php $menu_name = 'sidebar-menu'; //menu slug or menu location
$locations = get_nav_menu_locations();
$menu = wp_get_nav_menu_object( $locations[ $menu_name ] );
$menuitems = wp_get_nav_menu_items( $menu->term_id, array( 'order' => 'DESC' ) );
 
echo "<pre>";
print_r($menuitems);
echo "</pre>";
?>
Source by www.invezzatechnologies.com #
 
PREVIOUS NEXT
Tagged: #access #menu #worpress
ADD COMMENT
Topic
Name
3+3 =