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.
Built from https://develop.svn.wordpress.org/trunk@55265


git-svn-id: http://core.svn.wordpress.org/trunk@54798 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2023-02-07 15:25:24 +00:00
parent e9b231ccdf
commit 6a22b9c21c
2 changed files with 1 additions and 10 deletions

View File

@ -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,

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.2-alpha-55264';
$wp_version = '6.2-alpha-55265';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.