Make WordPress Core

Ticket #48358: 48358.diff

File 48358.diff, 728 bytes (added by danielpost, 5 years ago)
  • src/wp-includes/post.php

    diff --git a/src/wp-includes/post.php b/src/wp-includes/post.php
    index deb215e17d..f621f456ba 100644
    a b function _publish_post_hook( $post_id ) { 
    68216821 *
    68226822 * @since 3.1.0
    68236823 *
    6824  * @param int|WP_Post $post Post ID or post object. Defaults to global $post.
     6824 * @param int|WP_Post|null $post Optional. Post ID or post object. Defaults to global $post.
    68256825 * @return int|false Post parent ID (which can be 0 if there is no parent), or false if the post does not exist.
    68266826 */
    6827 function wp_get_post_parent_id( $post ) {
     6827function wp_get_post_parent_id( $post = null ) {
    68286828        $post = get_post( $post );
    68296829        if ( ! $post || is_wp_error( $post ) ) {
    68306830                return false;