diff --git a/src/wp-includes/post-template.php b/src/wp-includes/post-template.php
index 3164509..2d89b3e 100644
|
a
|
b
|
function the_guid( $id = 0 ) { |
| 179 | 179 | * |
| 180 | 180 | * @see get_the_guid() |
| 181 | 181 | * |
| 182 | | * @param string $post_guid Escaped Global Unique Identifier (guid) of the post. |
| | 182 | * @param string $post_guid Escaped Global Unique Identifier (guid) of the post. |
| | 183 | * @param integer $id ID for the post. |
| 183 | 184 | */ |
| 184 | | echo apply_filters( 'the_guid', get_the_guid( $id ) ); |
| | 185 | echo apply_filters( 'the_guid', get_the_guid( $id ), $id ); |
| 185 | 186 | } |
| 186 | 187 | |
| 187 | 188 | /** |
| … |
… |
function get_the_guid( $id = 0 ) { |
| 204 | 205 | * |
| 205 | 206 | * @since 1.5.0 |
| 206 | 207 | * |
| 207 | | * @param string $post_guid Global Unique Identifier (guid) of the post. |
| | 208 | * @param string $post_guid Global Unique Identifier (guid) of the post. |
| | 209 | * @param integer $id ID for the post. |
| 208 | 210 | */ |
| 209 | | return apply_filters( 'get_the_guid', $post->guid ); |
| | 211 | return apply_filters( 'get_the_guid', $post->guid, $id ); |
| 210 | 212 | } |
| 211 | 213 | |
| 212 | 214 | /** |