How to count nav menu items?

Call wp_get_nav_menu_object to get a menu object, which will give you the count of items for that menu.

Example:

// Get menu object
$my_menu = wp_get_nav_menu_object( 'your-menu-name-or-slug' );

// Echo count of items in menu
echo $my_menu->count;

Hope that helps.

Leave a Comment