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