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 ) { |
6821 | 6821 | * |
6822 | 6822 | * @since 3.1.0 |
6823 | 6823 | * |
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. |
6825 | 6825 | * @return int|false Post parent ID (which can be 0 if there is no parent), or false if the post does not exist. |
6826 | 6826 | */ |
6827 | | function wp_get_post_parent_id( $post ) { |
| 6827 | function wp_get_post_parent_id( $post = null ) { |
6828 | 6828 | $post = get_post( $post ); |
6829 | 6829 | if ( ! $post || is_wp_error( $post ) ) { |
6830 | 6830 | return false; |
diff --git a/tests/phpunit/tests/post/wpGetPostParentId.php b/tests/phpunit/tests/post/wpGetPostParentId.php
index fe6eacde38..6906eddcd9 100644
a
|
b
|
class Tests_Post_WpGetPostParentId extends WP_UnitTestCase { |
33 | 33 | $this->assertSame( self::$parent_post_id, wp_get_post_parent_id( self::$post_id ) ); |
34 | 34 | } |
35 | 35 | |
| 36 | public function test_wp_get_post_parent_id_with_no_post_argument_default_to_global_post_id() { |
| 37 | $GLOBALS['post'] = get_post( self::$post_id ); |
| 38 | $this->assertSame( self::$parent_post_id, wp_get_post_parent_id() ); |
| 39 | } |
| 40 | |
36 | 41 | public function test_wp_get_post_parent_id_with_non_existing_id_default_to_global_post_id() { |
37 | 42 | $GLOBALS['post'] = get_post( self::$post_id ); |
38 | 43 | $this->assertSame( self::$parent_post_id, wp_get_post_parent_id( 0 ) ); |