diff --git a/src/wp-admin/includes/post.php b/src/wp-admin/includes/post.php
index 187c013031..c75c39b681 100644
|
a
|
b
|
function bulk_edit_posts( $post_data = null ) { |
| 624 | 624 | } |
| 625 | 625 | } |
| 626 | 626 | |
| | 627 | /** |
| | 628 | * Execute an action with all the post data processed by `bulk_edit_posts`. |
| | 629 | * |
| | 630 | * @since 5.0.3 |
| | 631 | * |
| | 632 | * @param array $post_data Associative array containing the post data. |
| | 633 | */ |
| | 634 | |
| | 635 | do_action( 'bulk_edit_posts', $post_data ); |
| | 636 | |
| 627 | 637 | return array( |
| 628 | 638 | 'updated' => $updated, |
| 629 | 639 | 'skipped' => $skipped, |