Opened 4 years ago
Closed 3 years ago
#48416 closed enhancement (fixed)
Add `saved_term` actions that fire on create and update
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 5.5 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Taxonomy | Keywords: | has-patch |
Focuses: | Cc: |
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.
Attachments (1)
Change History (6)
This ticket was mentioned in Slack in #core by dlh. View the logs.
3 years ago
#2
@
3 years ago
- Milestone changed from Awaiting Review to 5.5
- Owner set to SergeyBiryukov
- Status changed from new to reviewing
This ticket was mentioned in Slack in #core by david.baumwald. View the logs.
3 years ago
Note: See
TracTickets for help on using
tickets.
@SergeyBiryukov Latest patch still applies cleanly. Is this on your list to review for 5.5?