How to get nav menu list through menu name in WordPress
I’m using this code by this code but showing all pages not working with custom nav menu name
<?php wp_page_menu('sort_column=ID&sort_order=desc;'); ?>
How to get nav menu list through menu name in WordPress
I’m using this code by this code but showing all pages not working with custom nav menu name
<?php wp_page_menu('sort_column=ID&sort_order=desc;'); ?>
You must be logged in to post a comment.
I think you’re looking for the
wp_nav_menu()
function, which deals with the navigation menus that you create in the WordPress admin (Appearance > Menus)You can call it like this:
Where
Header Menu
is the name of the menu you want to print. There are other parameters available.