get_the_guid

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!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: