Changeset 34373
- Timestamp:
- 09/22/2015 04:14:15 AM (9 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post-thumbnail-template.php
r34167 r34373 171 171 return apply_filters( 'post_thumbnail_html', $html, $post->ID, $post_thumbnail_id, $size, $attr ); 172 172 } 173 174 /** 175 * Return the post thumbnail URL. 176 * 177 * @since 4.4.0 178 * 179 * @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is global `$post`. 180 * @param string|array $size Optional. Registered image size to retrieve the source for or a flat 181 * array of height and width dimensions. Default 'post-thumbnail'. 182 * @return string Post thumbnail URL or empty string. 183 */ 184 function get_the_post_thumbnail_url( $post = null, $size = 'post-thumbnail' ) { 185 $image = wp_get_attachment_image_url( get_post_thumbnail_id( $post ), $size ); 186 return isset( $image ) ? $image : ''; 187 } 188 189 /** 190 * Display the post thumbnail URL. 191 * 192 * @since 4.4.0 193 * 194 * @param string|array $size Optional. Registered image size to retrieve the source for or a flat 195 * array of height and width dimensions. Default 'post-thumbnail'. 196 */ 197 function the_post_thumbnail_url( $size = 'post-thumbnail' ) { 198 echo get_the_post_thumbnail_url( null, $size ); 199 } -
trunk/tests/phpunit/tests/post/thumbnails.php
r34167 r34373 111 111 $this->assertEquals( $expected, $actual ); 112 112 } 113 114 /** 115 * @ticket 33070 116 */ 117 function test_get_the_post_thumbnail_url() { 118 $this->assertEquals( '', get_the_post_thumbnail_url() ); 119 $this->assertEquals( '', get_the_post_thumbnail_url( $this->post ) ); 120 121 set_post_thumbnail( $this->post, $this->attachment_id ); 122 123 var_dump( get_the_post_thumbnail_url( $this->post ) ); 124 125 $this->assertEquals( '', get_the_post_thumbnail_url() ); 126 $this->assertEquals( wp_get_attachment_url( $this->attachment_id ), get_the_post_thumbnail_url( $this->post ) ); 127 128 $GLOBALS['post'] = $this->post; 129 130 $this->assertEquals( wp_get_attachment_url( $this->attachment_id ), get_the_post_thumbnail_url() ); 131 } 132 133 /** 134 * @ticket 33070 135 */ 136 function test_the_post_thumbnail_url() { 137 $GLOBALS['post'] = $this->post; 138 139 ob_start(); 140 the_post_thumbnail_url(); 141 $actual = ob_get_clean(); 142 143 $this->assertEmpty( $actual ); 144 145 ob_start(); 146 the_post_thumbnail_url(); 147 $actual = ob_get_clean(); 148 149 $this->assertEmpty( $actual ); 150 151 set_post_thumbnail( $this->post, $this->attachment_id ); 152 153 ob_start(); 154 the_post_thumbnail_url(); 155 $actual = ob_get_clean(); 156 157 $this->assertEquals( wp_get_attachment_url( $this->attachment_id ), $actual ); 158 } 113 159 }
Note: See TracChangeset
for help on using the changeset viewer.