diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 11cca710bc..1214c0d8b6 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -469,8 +469,6 @@ function _tag_row( $tag, $level, $taxonomy = 'post_tag' ) { $tagsel = $taxonomy; } - $count = ( $count > 0 ) ? "$count" : $count; - $pad = str_repeat( '— ', max(0, $level) ); $name = apply_filters( 'term_name', $pad . ' ' . $tag->name, $tag ); $qe_data = get_term($tag->term_id, $taxonomy, object, 'edit'); @@ -534,7 +532,7 @@ function _tag_row( $tag, $level, $taxonomy = 'post_tag' ) { break; case 'posts': $attributes = 'class="posts column-posts num"' . $style; - $out .= "$count"; + $out .= "$count"; break; default: $out .= "";