| 1 | Index: wp-admin/includes/meta-boxes.php |
|---|
| 2 | =================================================================== |
|---|
| 3 | --- wp-admin/includes/meta-boxes.php (revision 18088) |
|---|
| 4 | +++ wp-admin/includes/meta-boxes.php (working copy) |
|---|
| 5 | @@ -506,7 +506,7 @@ |
|---|
| 6 | */ |
|---|
| 7 | function post_slug_meta_box($post) { |
|---|
| 8 | ?> |
|---|
| 9 | -<label class="screen-reader-text" for="post_name"><?php _e('Slug') ?></label><input name="post_name" type="text" size="13" id="post_name" value="<?php echo esc_attr( $post->post_name ); ?>" /> |
|---|
| 10 | +<label class="screen-reader-text" for="post_name"><?php _e('Slug') ?></label><input name="post_name" type="text" size="13" id="post_name" value="<?php echo esc_attr( apply_filters('editable_slug', $post->post_name) ); ?>" /> |
|---|
| 11 | <?php |
|---|
| 12 | } |
|---|
| 13 | |
|---|