Show posts count for Categories and Tags in wp_nav_menu
Alright so this isn’t too difficult, first we will just check if the menu item is a taxonomy then get the count and display it! function ggstyle_menu_item_count( $output, $item, $depth, $args ) { // Check if the item is a Category or Custom Taxonomy if( $item->type == ‘taxonomy’ ) { $object = get_term($item->object_id, $item->object); // … Read more