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