diff --git a/src/wp-admin/includes/class-wp-terms-list-table.php b/src/wp-admin/includes/class-wp-terms-list-table.php
index 3c277d6a61..a874a18993 100644
--- a/src/wp-admin/includes/class-wp-terms-list-table.php
+++ b/src/wp-admin/includes/class-wp-terms-list-table.php
@@ -602,6 +602,23 @@ class WP_Terms_List_Table extends WP_List_Table {
 			return "<a href='" . esc_url( add_query_arg( $args, 'upload.php' ) ) . "'>$count</a>";
 		}
 
+		$query_args = array(
+			'post_type' => $this->screen->post_type,
+			'post_status' => 'publish',
+			'tax_query' => array(
+				array(
+					'taxonomy' => $this->screen->taxonomy,
+					'field' => 'id',
+					'terms' => array( $tag->term_id ),
+				),
+			),
+		);
+		$the_query = new WP_Query( $query_args );
+		
+		if ( isset( $the_query->found_posts ) && $the_query->found_posts != $count ) {
+			return "<span title='". esc_attr( sprintf( __( 'Current %s count' ), $this->screen->post_type ) ) ."'>[ <a href='" . esc_url( add_query_arg( $args, 'edit.php' ) ) . "'>$the_query->found_posts</a> ]</span> <span title='". esc_attr( 'Total count' ) ."'> [ <a href='" . esc_url( add_query_arg( $args, 'edit.php' ) ) . "'>$count</a> ]</span>";
+		}
+
 		return "<a href='" . esc_url( add_query_arg( $args, 'edit.php' ) ) . "'>$count</a>";
 	}
 
