wpseek.com
A WordPress-centric search engine for devs and theme authors



comment_guid › WordPress Function

Since2.5.0
Deprecatedn/a
comment_guid ( $comment_id = null )
Parameters:
  • (int|WP_Comment) $comment_id Optional comment object or ID. Defaults to global comment object.
    Required: No
    Default: null
Defined at:
Codex:

Displays the feed GUID for the current comment.



Source

function comment_guid( $comment_id = null ) {
	echo esc_url( get_comment_guid( $comment_id ) );
}