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
208  * Fires at the end of the Edit Term form for all taxonomies.
209  *
210  * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug.
211  *
212  * @since 3.0.0
213  *
214  * @param object $tag      Current taxonomy term object.
215  * @param string $taxonomy Current taxonomy slug.
216  */
217 do_action( "{$taxonomy}_edit_form", $tag, $taxonomy );
218
219 submit_button( __('Update') );
220 ?>
221 </form>
222 </div>
223
224 <?php if ( ! wp_is_mobile() ) : ?>
225 <script type="text/javascript">
226 try{document.forms.edittag.name.focus();}catch(e){}