Opened 7 years ago
Closed 6 years ago
#48416 closed enhancement (fixed)
Add `saved_term` actions that fire on create and update
| Reported by: | dlh | Owned by: | SergeyBiryukov |
|---|---|---|---|
| Priority: | normal | Milestone: | 5.5 |
| Component: | Taxonomy | Version: | |
| Severity: | normal | Keywords: | has-patch |
| Cc: | Focuses: |
Description
The save_post and save_post_{$post_type} actions fire both when a post is created or updated. Terms have separate created_* and edited_* hooks, but not a shared hook like posts do.
So, if a developer wants to hook into both the create and update events, two add_action()s are required for terms, but only one is required for posts.
This patch proposes adding new saved_term and saved_{$taxonomy} hooks to wp_insert_term() and wp_update_term() to bring the same convenience to terms currently available for posts.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
@SergeyBiryukov Latest patch still applies cleanly. Is this on your list to review for 5.5?