Comment Information
Retrieve the user of the comment.
{{ comment.user }}
Retrieve the id of the comment.
{{ comment.id }}
Retrieve the url of the comment.
{{ comment.url }}
Retrieve the author name of the comment.
{{ comment.author }}
Retrieve the content information where the comment was made. Once you have the piece of content, you can use any variables related to content information.
{{ comment.content }}
Retrieve the created_at date of the comment.
{{ comment.created_at }}
Retrieve the author ip of comment.
{{ comment.author_ip }}
Retrieve the author url of the comment.
{{ comment.author_url }}
Check to see if there is an author email.
{{ comment.author_email? }}
Check to see if there is an author url.
{{ comment.author_url }}
Check to see if the comment is approved.
{{ comment.approved? }}
Retrieve the body of the comment.
{{ comment.body }}