Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: editable_slug

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
92                <?php
93                /**
94                 * Filter the editable term slug.
95                 *
96                 * @since 2.6.0
97                 *
98                 * @param string $slug The current term slug.
99                 */
100                ?>
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                <p class="description"><?php _e('The &#8220;slug&#8221; is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></p></td>
103           </tr>
104 <?php } ?>
105 <?php if ( is_taxonomy_hierarchical($taxonomy) ) : ?>
106           <tr class="form-field term-parent-wrap">
107                <th scope="row"><label for="parent"><?php _ex( 'Parent', 'term parent' ); ?></label></th>
108                <td>
109                     <?php wp_dropdown_categories(array('hide_empty' => 0, 'hide_if_empty' => false, 'name' => 'parent', 'orderby' => 'name', 'taxonomy' => $taxonomy, 'selected' => $tag->parent, 'exclude_tree' => $tag->term_id, 'hierarchical' => true, 'show_option_none' => __('None'))); ?>
110                     <?php if ( 'category' == $taxonomy ) : ?>