Make WordPress Core

Ticket #28112: 28112.4.diff

File 28112.4.diff, 620 bytes (added by SergeyBiryukov, 15 months ago)
  • src/wp-admin/includes/post.php

     
    677677                }
    678678        }
    679679
     680        /**
     681         * Fires after processing the post data for bulk edit.
     682         *
     683         * @since 6.3.0
     684         *
     685         * @param int[] $updated          An array of updated post IDs.
     686         * @param array $shared_post_data Associative array containing the post data.
     687         */
     688        do_action( 'bulk_edit_posts', $updated, shared_post_data );
     689
    680690        return array(
    681691                'updated' => $updated,
    682692                'skipped' => $skipped,