Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: edit_tag_form_pre

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
40 } else {
41      /**
42       * Fires before the Edit Tag form.
43       *
44       * @since 2.5.0
45       * @deprecated 3.0.0 Use {$taxonomy}_pre_edit_form instead.
46       *
47       * @param object $tag Current tag term object.
48       */
49      do_action( 'edit_tag_form_pre', $tag );
50 }
51
52 /**
53  * Use with caution, see http://codex.wordpress.org/Function_Reference/wp_reset_vars
54  */
55 wp_reset_vars( array( 'wp_http_referer' ) );
56
57 $wp_http_referer = remove_query_arg( array( 'action', 'message', 'tag_ID' ), $wp_http_referer );
58