mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-01 15:50:09 +00:00
Pass $update to the save_post and wp_insert_post hooks in wp_insert_post(). props ericmann, fixes #21450.
git-svn-id: https://develop.svn.wordpress.org/trunk@24823 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -2872,8 +2872,8 @@ function wp_insert_post($postarr, $wp_error = false) {
|
||||
do_action( 'post_updated', $post_ID, $post_after, $post_before);
|
||||
}
|
||||
|
||||
do_action('save_post', $post_ID, $post);
|
||||
do_action('wp_insert_post', $post_ID, $post);
|
||||
do_action( 'save_post', $post_ID, $post, $update );
|
||||
do_action( 'wp_insert_post', $post_ID, $post, $update );
|
||||
|
||||
return $post_ID;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user