diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php
index 832cf509aa..2a75fe57bd 100644
--- a/wp-admin/includes/template.php
+++ b/wp-admin/includes/template.php
@@ -177,14 +177,14 @@ function _cat_row( $category, $level, $name_override = false ) {
$output .= "
$edit";
$output .= '';
$output .= ' ' . $qe_data->name . ' ';
- $output .= ' ' . $qe_data->slug . ' ';
+ $output .= ' ' . apply_filters('editable_slug', $qe_data->slug) . ' ';
$output .= ' ' . $qe_data->parent . ' | ';
break;
case 'description':
$output .= "$category->description | ";
break;
case 'slug':
- $output .= "$category->slug | ";
+ $output .= "" . apply_filters('editable_slug', $category->slug) . " | ";
break;
case 'posts':
$attributes = 'class="posts column-posts num"' . $style;
@@ -347,14 +347,14 @@ function link_cat_row( $category, $name_override = false ) {
$output .= "$edit";
$output .= '';
$output .= ' ' . $qe_data->name . ' ';
- $output .= ' ' . $qe_data->slug . ' ';
+ $output .= ' ' . apply_filters('editable_slug', $qe_data->slug) . ' ';
$output .= ' ' . $qe_data->parent . ' | ';
break;
case 'description':
$output .= "$category->description | ";
break;
case 'slug':
- $output .= "$category->slug | ";
+ $output .= "" . apply_filters('editable_slug', $category->slug) . " | ";
break;
case 'links':
$attributes = 'class="links column-links num"' . $style;
@@ -681,13 +681,13 @@ function _tag_row( $tag, $class = '', $taxonomy = 'post_tag' ) {
$out .= '';
$out .= '';
$out .= '
' . $qe_data->name . '
';
- $out .= '
' . $qe_data->slug . '
';
+ $out .= '' . apply_filters('editable_slug', $qe_data->slug) . '
';
break;
case 'description':
$out .= "$tag->description | ";
break;
case 'slug':
- $out .= "$tag->slug | ";
+ $out .= "" . apply_filters('editable_slug', $tag->slug) . " | ";
break;
case 'posts':
$attributes = 'class="posts column-posts num"' . $style;
@@ -1295,7 +1295,7 @@ function get_inline_data($post) {
echo '
' . $title . '
-
' . $post->post_name . '
+
' . apply_filters('editable_slug', $post->post_name) . '
' . $post->post_author . '
' . $post->ping_status . '