wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



comment_guid › WordPress Function

Da2.5.0
Deprecaton/a
comment_guid ( $comment_id = null )
Parametri:
  • (int|WP_Comment) $comment_id Optional comment object or ID. Defaults to global comment object.
    Richiesto: No
    Default: null
Definito a:
Codex:

Displays the feed GUID for the current comment.



Sorgenti

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