Make WordPress Core

Ticket #28112: 28112.2.diff

File 28112.2.diff, 533 bytes (added by mrasharirfan, 6 years ago)

I have applied WordPress coding standards to the patch.

  • wp-admin/includes/post.php

     
    604604                }
    605605        }
    606606
     607        /**
     608         * Execute an action with all the post data processed by `bulk_edit_posts`.
     609         *
     610         * @since 4.7
     611         *
     612         * @param array $post_data Associative array containing the post data.
     613         */
     614        do_action( 'bulk_edit_posts', $post_data );
     615
    607616        return array(
    608617                'updated' => $updated,
    609618                'skipped' => $skipped,