Make WordPress Core

Ticket #15230: 15230.diff

File 15230.diff, 621 bytes (added by pareshradadiya, 9 years ago)

Patch updated

  • src/wp-includes/post.php

     
    34313431                        }
    34323432                }
    34333433        } else {
     3434                /**
     3435                 * Fires immediately before a new post is inserted in the database.
     3436                 *
     3437                 * @param array $data    Array of unslashed post data.
     3438                 * @param array $postarr An array of post data.
     3439                 */
     3440                do_action( 'pre_post_insert', $data, $postarr );
    34343441                // If there is a suggested ID, use it if not already present.
    34353442                if ( ! empty( $import_id ) ) {
    34363443                        $import_id = (int) $import_id;