Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: {$taxonomy}_term_edit_form_top

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
106  * At this point, the required hidden fields and nonces have already been output.
107  *
108  * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
109  *
110  * @since 4.5.0
111  *
112  * @param object $tag      Current taxonomy term object.
113  * @param string $taxonomy Current $taxonomy slug.
114  */
115 do_action( "{$taxonomy}_term_edit_form_top", $tag, $taxonomy );
116 ?>
117      <table class="form-table">
118           <tr class="form-field form-required term-name-wrap">
119                <th scope="row"><label for="name"><?php _ex( 'Name', 'term name' ); ?></label></th>
120                <td><input name="name" id="name" type="text" value="<?php if ( isset( $tag->name ) ) echo esc_attr($tag->name); ?>" size="40" aria-required="true" />
121                <p class="description"><?php _e('The name is how it appears on your site.'); ?></p></td>
122           </tr>
123 <?php if ( !global_terms_enabled() ) { ?>
124           <tr class="form-field term-slug-wrap">