Changeset 50396
- Timestamp:
- 02/20/2021 05:43:55 PM (4 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post-template.php
r50127 r50396 1973 1973 * @return WP_Post|null Parent post object, or null if there isn't one. 1974 1974 */ 1975 function get_p arent_post( $post = null ) {1975 function get_post_parent( $post = null ) { 1976 1976 $wp_post = get_post( $post ); 1977 1977 return ! empty( $wp_post->post_parent ) ? get_post( $wp_post->post_parent ) : null; … … 1986 1986 * @return bool Whether the post has a parent post. 1987 1987 */ 1988 function has_p arent_post( $post = null ) {1989 return (bool) get_p arent_post( $post );1990 } 1988 function has_post_parent( $post = null ) { 1989 return (bool) get_post_parent( $post ); 1990 } -
trunk/tests/phpunit/tests/post/template.php
r50127 r50396 468 468 469 469 // Test if child get_parent_post() post returns Null by default. 470 $parent = get_p arent_post( $child_id );470 $parent = get_post_parent( $child_id ); 471 471 $this->assertNull( $parent ); 472 472 … … 480 480 481 481 // Test if child get_parent_post() post returns the parent object. 482 $parent = get_p arent_post( $child_id );482 $parent = get_post_parent( $child_id ); 483 483 $this->assertNotNull( $parent ); 484 484 $this->assertSame( $parent_id, $parent->ID ); … … 499 499 500 500 // Test if child has_parent_post() post returns False by default. 501 $parent = has_p arent_post( $child_id );501 $parent = has_post_parent( $child_id ); 502 502 $this->assertFalse( $parent ); 503 503 … … 511 511 512 512 // Test if child has_parent_post() returns True. 513 $parent = has_p arent_post( $child_id );513 $parent = has_post_parent( $child_id ); 514 514 $this->assertTrue( $parent ); 515 515 }
Note: See TracChangeset
for help on using the changeset viewer.