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



comment_guid › WordPress Function

Seit2.5.0
Veraltetn/v
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
Definiert in:
Codex:

Displays the feed GUID for the current comment.



Quellcode

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