Files
Filename | Hook Type | Line Number | PHP Doc |
---|---|---|---|
wp-admin/edit-tags.php | do_action_deprecated | 568 | /** * Fires at the end of the Edit Link form. * * @since 2.3.0 * @deprecated 3.0.0 Use {@see '{$taxonomy}_add_form'} instead. * * @param object $arg Optional arguments cast to an object. */ |
wp-admin/edit-tag-form.php | do_action_deprecated | 266 | /** * Fires after the Edit Term form fields are displayed. * * The dynamic portion of the hook name, `$taxonomy`, refers to * the taxonomy slug. * * Possible hook names include: * * - `category_edit_form_fields` * - `post_tag_edit_form_fields` * * @since 3.0.0 * * @param WP_Term $tag Current taxonomy term object. * @param string $taxonomy Current taxonomy slug. */ |
Hook Parameters
Parameter Type | Name | Description |
---|---|---|
object | $arg | Optional arguments cast to an object. |
WP_Term | $tag | Current link category term object. |