diff --git a/src/wp-includes/post-template.php b/src/wp-includes/post-template.php
index 3164509..2d89b3e 100644
--- a/src/wp-includes/post-template.php
+++ b/src/wp-includes/post-template.php
@@ -179,9 +179,10 @@ function the_guid( $id = 0 ) {
 	 *
 	 * @see get_the_guid()
 	 *
-	 * @param string $post_guid Escaped Global Unique Identifier (guid) of the post.
+	 * @param string  $post_guid  Escaped Global Unique Identifier (guid) of the post.
+	 * @param integer $id         ID for the post.
 	 */
-	echo apply_filters( 'the_guid', get_the_guid( $id ) );
+	echo apply_filters( 'the_guid', get_the_guid( $id ), $id );
 }
 
 /**
@@ -204,9 +205,10 @@ function get_the_guid( $id = 0 ) {
 	 *
 	 * @since 1.5.0
 	 *
-	 * @param string $post_guid Global Unique Identifier (guid) of the post.
+	 * @param string  $post_guid  Global Unique Identifier (guid) of the post.
+	 * @param integer $id         ID for the post.
 	 */
-	return apply_filters( 'get_the_guid', $post->guid );
+	return apply_filters( 'get_the_guid', $post->guid, $id );
 }
 
 /**
