Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: {$taxonomy}_edit_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
284  *
285  *  - `category_edit_form`
286  *  - `post_tag_edit_form`
287  *
288  * @since 3.0.0
289  *
290  * @param WP_Term $tag      Current taxonomy term object.
291  * @param string  $taxonomy Current taxonomy slug.
292  */
293 do_action( "{$taxonomy}_edit_form", $tag, $taxonomy );
294 ?>
295
296 <div class="edit-tag-actions">
297
298      <?php submit_button( __( 'Update' ), 'primary', null, false ); ?>
299
300      <?php if ( current_user_can( 'delete_term', $tag->term_id ) ) : ?>
301           <span id="delete-link">
302                <a class="delete" href="<?php echo esc_url( admin_url( wp_nonce_url( "edit-tags.php?action=delete&taxonomy=$taxonomy&tag_ID=$tag->term_id", 'delete-tag_' . $tag->term_id ) ) ); ?>"><?php _e( 'Delete' ); ?></a>