Skip to main content
Timber

You are reading the documentation for Timber v1.x. Switch to the documentation for Timber v2.x.

Timber\Comment

The Timber\Comment class is used to view the output of comments. 99% of the time this will be in the context of the comments on a post. However you can also fetch a comment directly using its comment ID.

PHP

<?php
$comment = new Timber\Comment($comment_id);
$context['comment_of_the_day'] = $comment;
Timber::render('index.twig', $context);

Twig

<p class="comment">{{comment_of_the_day.content}}</p>
<p class="comment-attribution">- {{comment.author.name}}</p>

HTML

<p class="comment">But, O Sarah! If the dead can come back to this earth and flit unseen around those they loved, I shall always be near you; in the garish day and in the darkest night -- amidst your happiest scenes and gloomiest hours - always, always; and if there be a soft breeze upon your cheek, it shall be my breath; or the cool air fans your throbbing temple, it shall be my spirit passing by.</p>
<p class="comment-attribution">- Sullivan Ballou</p>

Overview #

Methods #

NameTypeReturns/Description
approvedboolean
author\Timber\User
avatarbool/mixed/string
childrenarrayComments
contentstring
datestring
is_childbool
reply_linkstring
timestring

Class Methods #

__construct #

__construct( int $cid )

returns: void

NameTypeDescription
$cidint

__toString #

__toString( )

returns: void


add_child #

add_child( \Timber\Comment $child_comment )

returns: void

NameTypeDescription
$child_comment\Timber\Comment

approved #

approved( )

returns: boolean

Twig

{% if comment.approved %}
Your comment is good
{% else %}
Do you kiss your mother with that mouth?
{% endif %}

author #

author( )

returns: \Timber\User

Twig

<h3>Comments by...</h3>
<ol>
{% for comment in post.comments %}
<li>{{comment.author.name}}, who has the following roles: {{comment.author.roles|join(', ')}}</li>
{% endfor %}
</ol>

HTML

<h3>Comments by...</h3>
<ol>
<li>Jared Novack, who is a contributor</li>
<li>Katie Ricci, who is a subscriber</li>
<li>Rebecca Pearl, who is a author</li>
</ol>

avatar #

avatar( mixed/int $size=92, string $default="" )

returns: bool/mixed/string

Fetches the Gravatar

NameTypeDescription
$sizemixed/int
$defaultstring

Twig

<img src="{{comment.avatar(36,template_uri~"/img/dude.jpg")}}" alt="Image of {{comment.author.name}}" />

HTML

<img src="http://gravatar.com/i/sfsfsdfasdfsfa.jpg" alt="Image of Katherine Rich" />

children #

children( )

returns: array Comments


content #

content( )

returns: string


date #

date( string $date_format="" )

returns: string

NameTypeDescription
$date_formatstring

Twig

{% for comment in post.comments %}
<article class="comment">
<p class="date">Posted on {{ comment.date }}:</p>
<p class="comment">{{ comment.content }}</p>
</article>
{% endfor %}

HTML

<article class="comment">
<p class="date">Posted on September 28, 2015:</p>
<p class="comment">Happy Birthday!</p>
</article>

depth #

depth( )

returns: void


is_child #

is_child( )

returns: bool


meta #

meta( string $field_name )

returns: mixed

NameTypeDescription
$field_namestring

reply_link( string $reply_text="Reply" )

returns: string

Enqueue the WP threaded comments javascript, and fetch the reply link for various comments.

NameTypeDescription
$reply_textstring

time #

time( string $time_format="" )

returns: string

NameTypeDescription
$time_formatstring

Twig

{% for comment in post.comments %}
<article class="comment">
<p class="date">Posted on {{ comment.date }} at {{comment.time}}:</p>
<p class="comment">{{ comment.content }}</p>
</article>
{% endfor %}

HTML

<article class="comment">
<p class="date">Posted on September 28, 2015 at 12:45 am:</p>
<p class="comment">Happy Birthday!</p>
</article>

update_depth #

update_depth( int $depth )

returns: void

NameTypeDescription
$depthint

This class extends \Timber\Core

This class implements \Timber\CoreInterface