Definition:
function get_the_guid( $id = 0 ) {}
Retrieve the Post Global Unique Identifier (guid).
The guid will appear to be a link, but should not be used as an link to the post. The reason you should not use it as a link, is because of moving the blog across domains.
Parameters
- int $id: Optional. Post ID.
Defined filters
- get_the_guid
apply_filters('get_the_guid', $post->guid)
Source code
function get_the_guid( $id = 0 ) { $post = &get_post($id); return apply_filters('get_the_guid', $post->guid); }
1833
No comments yet... Be the first to leave a reply!