diff --git a/wp-admin/includes/post.php b/wp-admin/includes/post.php index b72134d421..2cd5cadc0c 100644 --- a/wp-admin/includes/post.php +++ b/wp-admin/includes/post.php @@ -663,6 +663,15 @@ function bulk_edit_posts( $post_data = null ) { } } + /** + * Fires after processing the post data for bulk edit. + * + * @since 6.2.0 + * + * @param array $post_data Associative array containing the post data. + */ + do_action( 'bulk_edit_posts', $post_data ); + return array( 'updated' => $updated, 'skipped' => $skipped, diff --git a/wp-includes/version.php b/wp-includes/version.php index 8902db4d64..e4b3f4278d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-alpha-55107'; +$wp_version = '6.2-alpha-55108'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.