Changeset 46080
- Timestamp:
- 09/07/2019 07:32:42 PM (4 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post-template.php
r46079 r46080 283 283 } 284 284 285 if ( null === $post && in_the_loop()) {285 if ( null === $post ) { 286 286 $elements = compact( 'page', 'more', 'preview', 'pages', 'multipage' ); 287 287 } else { -
trunk/tests/phpunit/tests/post/getTheContent.php
r46079 r46080 76 76 $this->assertSame( 'Bang', $found ); 77 77 } 78 79 /**80 * @ticket 4782481 */82 public function test_should_fall_back_to_post_global_outside_of_the_loop() {83 $GLOBALS['post'] = self::factory()->post->create( array( 'post_content' => 'Foo' ) );84 85 $this->assertSame( 'Foo', get_the_content() );86 }87 78 }
Note: See TracChangeset
for help on using the changeset viewer.