how to access the name of menu in worpress
$menu = wp_get_nav_menu_object("my mainmenu" );
how to access the name of menu in worpress
$menu = wp_get_nav_menu_object("my mainmenu" );
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>";
?>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us