>>>>>>>> IN "NAV-MENU.PHP" ADD
function post_count($cat,$depth){
global $wpdb;
$a=0;
$post_count = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->term_relationships WHERE term_taxonomy_id=$cat;");
for ($i=0;$i<$post_count;$i++){
$post_count_id[$i] = $wpdb->get_var("SELECT object_id FROM $wpdb->term_relationships WHERE term_taxonomy_id=$cat;");
$post_cont_pub[$i]= $wpdb->get_var("SELECT * FROM $wpdb->posts WHERE post_status='publish' AND ID=$post_count_id[$i];");
if($post_cont_pub[$i]){ $a++; }
}
if ($depth=='1'){
$post_count= sprintf("%02d", $a);
return '<span>_'.$post_count.'</span> ';}
}
>>>>>>>> IN "NAV-MENU-TEMPLATE.PHP" FOUND AND REPLACE
found >>> $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
replace by >>>> $item_output .= $args->link_before . apply_filters( 'the_title', post_count($item->object_id,$depth).$item->title, $item->ID ) . $args->link_after;