wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_comment_guid › WordPress Function

Seit2.5.0
Veraltetn/v
get_comment_guid ( $comment_id = null )
Parameter:
  • (int|WP_Comment) $comment_id Optional comment object or ID. Defaults to global comment object.
    Erforderlich: Nein
    Standard: null
Gibt zurück:
  • (string|false) GUID for comment on success, false on failure.
Definiert in:
Codex:

Retrieves the feed GUID for the current comment.



Quellcode

function get_comment_guid( $comment_id = null ) {
	$comment = get_comment( $comment_id );

	if ( ! is_object( $comment ) ) {
		return false;
	}

	return get_the_guid( $comment->comment_post_ID ) . '#comment-' . $comment->comment_ID;
}