Nav Menu and display post count
Yep, I’ve got the solution to this problem. You can retrieve number of child items right from menu_items retrieved by wp_get_nav_menu_items. This function retrieves a bunch of post objects containing info about ‘menu_item_parent’. Inside start_el function of Walker_Nav_Menu class, you can try the match agains $item->ID. This way: $locations = get_nav_menu_locations(); $menu = wp_get_nav_menu_object( $locations[‘primary’] … Read more