diff --git a/wp-admin/includes/post.php b/wp-admin/includes/post.php index 4036b2bbce..37ab30721d 100644 --- a/wp-admin/includes/post.php +++ b/wp-admin/includes/post.php @@ -681,6 +681,16 @@ function bulk_edit_posts( $post_data = null ) { } } + /** + * Fires after processing the post data for bulk edit. + * + * @since 6.3.0 + * + * @param int[] $updated An array of updated post IDs. + * @param array $shared_post_data Associative array containing the post data. + */ + do_action( 'bulk_edit_posts', $updated, $shared_post_data ); + return array( 'updated' => $updated, 'skipped' => $skipped, diff --git a/wp-includes/version.php b/wp-includes/version.php index 42ad89e578..85fbeee08f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-alpha-56090'; +$wp_version = '6.3-alpha-56091'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.