diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 1aba1372c1..00d8734204 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -238,11 +238,12 @@ function _tag_row( $tag, $class = '' ) { $count = number_format_i18n( $tag->count ); $count = ( $count > 0 ) ? "$count" : $count; + $name = apply_filters( 'term_name', $tag->name ); $out = ''; $out .= ''; $out .= ' '; - $out .= '' . - apply_filters( 'term_name', $tag->name ) . ''; + $out .= '' . + $name . ''; $out .= "$count"; $out .= '';