I use $term->count
to display post count but it displays the total count of all type of custom posts attached to taxonomy…
I just want to display the count of only a specific custom post type attached to taxonomy
$icon = get_field('logo', $term->taxonomy . '_' . $term->term_id);
$va_category_HTML .= '<li class="logolar" '.$carrentActiveClass.'>' .'<a class="rownum">' .$i++. '</a>'. '</a>';
$va_category_HTML .= sprintf('<img src="https://wordpress.stackexchange.com/questions/340250/%s" />', $icon) . '</a>';
$va_category_HTML .='<a href="' . esc_url( $term_link ) . '">' . $term->name . '</a>';
if (empty( $instance['wcw_hide_count'] )) {
$va_category_HTML .='<span class="post-count">'.$term->count.'</span>';
}
$va_category_HTML .='</li>';