Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: edit_tag_form

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
29             <p><?php _e('The name is how the tag appears on your site.'); ?></p></td>
30           </tr>
31           <tr class="form-field">
32                <th scope="row" valign="top"><label for="slug"><?php _e('Tag slug') ?></label></th>
33                <td><input name="slug" id="slug" type="text" value="<?php if ( isset( $tag->slug ) ) echo attribute_escape(apply_filters('editable_slug', $tag->slug)); ?>" size="40" />
34             <p><?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>
35           </tr>
36      </table>
37 <p class="submit"><input type="submit" class="button-primary" name="submit" value="<?php _e('Update Tag'); ?>" /></p>
38 <?php do_action('edit_tag_form', $tag); ?>
39 </form>
40 </div>
41