WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 395 | <form id="addtag" method="post" action="edit-tags.php" class="validate" |
| 396 | <?php |
| 397 | /** |
| 398 | * Fires at the beginning of the Add Tag form. |
| 399 | * |
| 400 | * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug. |
| 401 | * |
| 402 | * @since 3.7.0 |
| 403 | */ |
| 404 | do_action( "{$taxonomy}_term_new_form_tag" ); |
| 405 | ?>> |
| 406 | <input type="hidden" name="action" value="add-tag" /> |
| 407 | <input type="hidden" name="screen" value="<?php echo esc_attr($current_screen->id); ?>" /> |
| 408 | <input type="hidden" name="taxonomy" value="<?php echo esc_attr($taxonomy); ?>" /> |
| 409 | <input type="hidden" name="post_type" value="<?php echo esc_attr($post_type); ?>" /> |
| 410 | <?php wp_nonce_field('add-tag', '_wpnonce_add-tag'); ?> |
| 411 | |
| 412 | <div class="form-field form-required term-name-wrap"> |
| 413 | <label for="tag-name"><?php _ex( 'Name', 'term name' ); ?></label> |