diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index 5dfe5d04a6..1a5360d551 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/wp-includes/class-wp-customize-manager.php @@ -2964,9 +2964,6 @@ final class WP_Customize_Manager { $post->post_status = $new_status; wp_transition_post_status( $new_status, $old_status, $post ); - /** This action is documented in wp-includes/post.php */ - do_action( "edit_post_{$post->post_type}", $post->ID, $post ); - /** This action is documented in wp-includes/post.php */ do_action( 'edit_post', $post->ID, $post ); diff --git a/wp-includes/comment.php b/wp-includes/comment.php index 174f15e6f3..0ff803327a 100644 --- a/wp-includes/comment.php +++ b/wp-includes/comment.php @@ -2403,10 +2403,6 @@ function wp_update_comment_count_now($post_id) { * @param int $old The old comment count. */ do_action( 'wp_update_comment_count', $post_id, $new, $old ); - - /** This action is documented in wp-includes/post.php */ - do_action( "edit_post_{$post->post_type}", $post_id, $post ); - /** This action is documented in wp-includes/post.php */ do_action( 'edit_post', $post_id, $post ); diff --git a/wp-includes/post.php b/wp-includes/post.php index 83eb034c52..a199ee4c83 100644 --- a/wp-includes/post.php +++ b/wp-includes/post.php @@ -3624,19 +3624,6 @@ function wp_insert_post( $postarr, $wp_error = false ) { } if ( $update ) { - /** - * Fires once an existing post has been updated. - * - * The dynamic portion of the hook name, `$post->post_type`, refers to - * the post type slug. - * - * @since 4.9.9 - * - * @param int $post_ID Post ID. - * @param WP_Post $post Post object. - */ - do_action( "edit_post_{$post->post_type}", $post_ID, $post ); - /** * Fires once an existing post has been updated. * @@ -3646,8 +3633,7 @@ function wp_insert_post( $postarr, $wp_error = false ) { * @param WP_Post $post Post object. */ do_action( 'edit_post', $post_ID, $post ); - - $post_after = get_post( $post_ID ); + $post_after = get_post($post_ID); /** * Fires once an existing post has been updated. @@ -3786,9 +3772,6 @@ function wp_publish_post( $post ) { $post->post_status = 'publish'; wp_transition_post_status( 'publish', $old_status, $post ); - /** This action is documented in wp-includes/post.php */ - do_action( "edit_post_{$post->post_type}", $post->ID, $post ); - /** This action is documented in wp-includes/post.php */ do_action( 'edit_post', $post->ID, $post ); diff --git a/wp-includes/version.php b/wp-includes/version.php index af985e9214..45b267ef17 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9.9-alpha-43705'; +$wp_version = '4.9.9-alpha-43707'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.