Changeset 31687
- Timestamp:
- 03/09/2015 06:42:58 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-tag-form.php
r30998 r31687 96 96 * @since 2.6.0 97 97 * 98 * @param string $slug The current term slug. 99 */ 98 * @param string $tag_slug The current term slug. 99 */ 100 $slug = isset( $tag->slug ) ? apply_filters( 'editable_slug', $tag->slug ) : ''; 100 101 ?> 101 <td><input name="slug" id="slug" type="text" value="<?php if ( isset( $tag->slug ) ) echo esc_attr( apply_filters( 'editable_slug', $tag->slug )); ?>" size="40" />102 <td><input name="slug" id="slug" type="text" value="<?php echo esc_attr( $slug ); ?>" size="40" /> 102 103 <p class="description"><?php _e('The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></p></td> 103 104 </tr>
Note: See TracChangeset
for help on using the changeset viewer.