From 4b0a40500161c81c3d9b74ab5a1bb29dd1410234 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 7 Feb 2023 15:23:26 +0000 Subject: [PATCH] Quick/Bulk Edit: Remove the `bulk_edit_posts` action for now. This reverts [55108] pending confirmation that this hook is still needed, that the right variable is passed, and that the docs are correct. The necessity and implementation of this hook will be reconsidered in a future release. See #28112. git-svn-id: https://develop.svn.wordpress.org/trunk@55265 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/post.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/wp-admin/includes/post.php b/src/wp-admin/includes/post.php index 2cd5cadc0c..b72134d421 100644 --- a/src/wp-admin/includes/post.php +++ b/src/wp-admin/includes/post.php @@ -663,15 +663,6 @@ 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,