#46228 closed enhancement (fixed)
wp_insert_post_data should include $update
Reported by: | nhadsall | Owned by: | SergeyBiryukov |
---|---|---|---|
Milestone: | 6.0 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Posts, Post Types | Keywords: | has-patch dev-feedback add-to-field-guide |
Focuses: | Cc: |
Description
wp_insert_post() has a great filter: 'wp_insert_post_data', but it doesn't contain the status of $update (if the post is being updated or new). So, our options are 1. check again if this is an update (redundant) or 2. wait for the 'save_post' action and resave the post with changes (making redundant DB calls). So, it seems the best solution is 3. simply add $update as a parameter to wp_insert_post_data.
Attachments (1)
Change History (6)
#1
@
6 years ago
- Keywords has-patch dev-feedback added
Hi @nhadsall, Welcome to WordPress Trac! Thank you for your ticket.
+1 on your thought as it's great to add $update
variable in filter.
#3
@
3 years ago
- Owner set to SergeyBiryukov
- Resolution set to fixed
- Status changed from new to closed
In 52691:
Note: See
TracTickets for help on using
tickets.
Patch.