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
247  * Fires at the end of the Edit Term form for all taxonomies.
248  *
249  * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
250  *
251  * @since 3.0.0
252  *
253  * @param object $tag      Current taxonomy term object.
254  * @param string $taxonomy Current taxonomy slug.
255  */
256 do_action( "{$taxonomy}_edit_form", $tag, $taxonomy );
257 ?>
258
259 <div class="edit-tag-actions">
260
261      <?php submit_button( __( 'Update' ), 'primary', null, false ); ?>
262
263      <?php if ( current_user_can( 'delete_term', $tag->term_id ) ) : ?>
264           <span id="delete-link">
265                <a class="delete" href="<?php echo 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>