do_action( “{$taxonomy}_edit_form”, WP_Term $tag, string $taxonomy )

In this article

Fires at the end of the Edit Term form for all taxonomies.

Description

The dynamic portion of the hook name, $taxonomy, refers to the taxonomy slug.

Possible hook names include:

  • category_edit_form
  • post_tag_edit_form

Parameters

$tagWP_Term
Current taxonomy term object.
$taxonomystring
Current taxonomy slug.

Source

do_action( "{$taxonomy}_edit_form", $tag, $taxonomy );

Changelog

VersionDescription
3.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.