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
114  * At this point, the required hidden fields and nonces have already been output.
115  *
116  * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
117  *
118  * @since 4.5.0
119  *
120  * @param WP_Term $tag      Current taxonomy term object.
121  * @param string  $taxonomy Current $taxonomy slug.
122  */
123 do_action( "{$taxonomy}_term_edit_form_top", $tag, $taxonomy );
124
125 $tag_name_value = '';
126 if ( isset( $tag->name ) ) {
127      $tag_name_value = esc_attr( $tag->name );
128 }
129 ?>
130      <table class="form-table" role="presentation">
131           <tr class="form-field form-required term-name-wrap">
132                <th scope="row"><label for="name"><?php _ex( 'Name', 'term name' ); ?></label></th>