Timber Logo

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

Timber\Post

This is the object you use to access or extend WordPress posts. Think of it as Timber's (more accessible) version of WP_Post. This is used throughout Timber to represent posts retrieved from WordPress making them available to Twig templates. See the PHP and Twig examples for an example of what it's like to work with this object in your code.

PHP

<?php
// single.php, see connected twig example
$context = Timber::context();
$context['post'] = new Timber\Post(); // It's a new Timber\Post object, but an existing post from WordPress.
Timber::render('single.twig', $context);
?>

Twig

{# single.twig #}
<article>
<h1 class="headline">{{post.title}}</h1>
<div class="body">
{{post.content}}
</div>
</article>

HTML

<article>
<h1 class="headline">The Empire Strikes Back</h1>
<div class="body">
It is a dark time for the Rebellion. Although the Death Star has been destroyed, Imperial troops have driven the Rebel forces from their hidden base and pursued them across the galaxy.
</div>
</article>

Overview #

Properties #

NameTypeDescription
idint$id the numeric WordPress id of a post
post_statusstring$post_status the status of a post ("draft", "publish", etc.)
post_typestring$post_type the name of the post type, this is the machine name (so "my_custom_post_type" as opposed to "My Custom Post Type")
slugstring$slug the URL-safe slug, this corresponds to the poorly-named "post_name" in the WP database, ex: "hello-world"

Methods #

NameTypeReturns/Description
audio\Timber\html
author\Timber\User/nullA User object if found, false if not
categoriesarrayof Timber\Terms
category\Timber\Timber\Term/null
childrenarray
commentsbool/\Timber\CommentThread
contentstring
datestring
formatmixed
gallery\Timber\html
linkstringex: http://example.org/2015/07/my-awesome-post
nextmixed
parentbool/\Timber\Timber\Post
password_requiredboolean
pathstring
prevmixed
tagsarray
termsarrayAn array of taxonomies.
thumbnail\Timber\Timber\Image/nullof your thumbnail
timestring
titlestring
video\Timber\html

Class Methods #

__call #

__call( mixed $field, mixed $args )

returns: mixed

This is helpful for twig to return properties and methods see: https://github.com/fabpot/Twig/issues/2 This is also here to ensure that {{ post.class }} remains usable

NameTypeDescription
$fieldmixed
$argsmixed

__construct #

__construct( mixed $pid=null )

returns: void

If you send the constructor nothing it will try to figure out the current post id based on being inside The_Loop

NameTypeDescription
$pidmixed

PHP

<?php
$post = new Timber\Post();
$other_post = new Timber\Post($random_post_id);

__get #

__get( mixed $field )

returns: mixed

This is helpful for twig to return properties and methods see: https://github.com/fabpot/Twig/issues/2 This is also here to ensure that {{ post.class }} remains usable

NameTypeDescription
$fieldmixed

__toString #

__toString( )

returns: string

Outputs the title of the post if you do something like <h1>{{post}}</h1>


audio #

audio( )

returns: \Timber\html

Returns the audio

Twig

{{ post.audio }}

author #

author( )

returns: \Timber\User/null A User object if found, false if not

Return the author of a post

Twig

<h1>{{post.title}}</h1>
<p class="byline">
<a href="{{post.author.link}}">{{post.author.name}}</a>
</p>

authors #

authors( )

returns: void


categories #

categories( )

returns: array of Timber\Terms

Get the categoires on a particular post


category #

category( )

returns: \Timber\Timber\Term/null

Returns a category attached to a post


children #

children( string/string/array $post_type="any", bool/string/bool $childPostClass=false )

returns: array

Returns an array of children on the post as Timber\Posts (or other claass as you define).

NameTypeDescription
$post_typestring/string/arrayoptional use to find children of a particular post type (attachment vs. page for example). You might want to restrict to certain types of children in case other stuff gets all mucked in there. You can use 'parent' to use the parent's post type or you can pass an array of post types.
$childPostClassbool/string/booloptional a custom post class (ex: 'MyTimber\Post') to return the objects as. By default (false) it will use Timber\Post::$post_class value.

Twig

{% if post.children %}
Here are the child pages:
{% for child in post.children %}
<a href="{{ child.link }}">{{ child.title }}</a>
{% endfor %}
{% endif %}

comment_form #

comment_form( array $args=array() )

returns: string of HTML for the form

Gets the comment form for use on a single article page

NameTypeDescription
$argsarray

comments #

comments( mixed/int $count=null, string $order="wp", string $type="comment", string $status="approve", string $CommentClass="Timber\Comment" )

returns: bool/\Timber\CommentThread

Gets the comments on a Timber\Post and returns them as a Timber\CommentThread: a PHP ArrayObject of Timber\Comment (or whatever comment class you set).

NameTypeDescription
$countmixed/intSet the number of comments you want to get. 0 is analogous to "all".
$orderstringUse ordering set in WordPress admin, or a different scheme.
$typestringFor when other plugins use the comments table for their own special purposes. Might be set to 'liveblog' or other, depending on what’s stored in your comments table.
$statusstringCould be 'pending', etc.
$CommentClassstringWhat class to use when returning Comment objects. As you become a Timber Pro, you might find yourself extending Timber\Comment for your site or app (obviously, totally optional).

single.twig Twig

<div id="post-comments">
<h4>Comments on {{ post.title }}</h4>
<ul>
{% for comment in post.comments() %}
{% include 'comment.twig' %}
{% endfor %}
</ul>
<div class="comment-form">
{{ function('comment_form') }}
</div>
</div>

comment.twig Twig

{# comment.twig #}
<li>
<p class="comment-author">{{ comment.author.name }} says:</p>
<div>{{ comment.content }}</div>
</li>

content #

content( int $page, mixed $len=-1 )

returns: string

Gets the actual content of a WP Post, as opposed to post_content this will run the hooks/filters attached to the_content. \This guy will return your posts content with WordPress filters run on it (like for shortcodes and wpautop).

NameTypeDescription
$pageint
$lenmixed

Twig

<div class="article">
<h2>{{post.title}}</h2>
<div class="content">{{ post.content }}</div>
</div>

convert #

convert( array/\Timber\WP_Post $data )

returns: void

Finds any WP_Post objects and converts them to Timber\Posts

NameTypeDescription
$dataarray/\Timber\WP_Post

date #

date( string $date_format="" )

returns: string

Get the date to use in your template!

NameTypeDescription
$date_formatstring

Twig

Published on {{ post.date }} // Uses WP's formatting set in Admin
OR
Published on {{ post.date('F jS') }} // Jan 12th

HTML

Published on January 12, 2015
OR
Published on Jan 12th

edit_link( )

returns: bool/string the edit URL of a post in the WordPress admin

Returns the edit URL of a post if the user has access to it


field_object #

field_object( string $field_name )

returns: mixed

Gets the field object data from Advanced Custom Fields. This includes metadata on the field like whether it's conditional or not.

NameTypeDescription
$field_namestringof the field you want to lookup.

format #

format( )

returns: mixed


gallery( bool $html=true )

returns: \Timber\html

Returns the gallery

NameTypeDescription
$htmlbool

Twig

{{ post.gallery }}

get_comment_count #

get_comment_count( )

returns: int the number of comments on a post


get_content #

get_content( mixed/int $len=-1, int $page )

returns: string

Displays the content of the post with filters, shortcodes and wpautop applied

NameTypeDescription
$lenmixed/int
$pageint

Twig

<div class="article-text">{{post.get_content}}</div>

HTML

<div class="article-text"><p>Blah blah blah</p><p>More blah blah blah.</p></div>

get_field #

get_field( string $field_name )

returns: mixed

NameTypeDescription
$field_namestring

get_image #

get_image( string $field )

returns: \Timber\Timber\Image

NameTypeDescription
$fieldstring

get_method_values #

get_method_values( )

returns: array


get_paged_content #

get_paged_content( )

returns: string


get_post_type #

DEPRECATED since 1.0.4

get_post_type( )

returns: \Timber\PostType

Returns the post_type object with labels and other info

Twig

This post is from <span>{{ post.get_post_type.labels.plural }}</span>

HTML

This post is from <span>Recipes</span>

get_preview #

DEPRECATED since 1.3.1, use {{ post.preview }} instead

get_preview( mixed/int $len=50, bool $force=false, string $readmore="Read More", bool/bool/string $strip=true, string $end="&hellip;" )

returns: string of the post preview

get a preview of your post, if you have an excerpt it will use that, otherwise it will pull from the post_content. If there's a tag it will use that to mark where to pull through.

NameTypeDescription
$lenmixed/intThe number of words that WP should use to make the tease. (Isn't this better than this mess?). If you've set a post_excerpt on a post, we'll use that for the preview text; otherwise the first X words of the post_content
$forceboolWhat happens if your custom post excerpt is longer then the length requested? By default ($force = false) it will use the full post_excerpt. However, you can set this to true to force your excerpt to be of the desired length
$readmorestringThe text you want to use on the 'readmore' link
$stripbool/bool/stringtrue for default, false for none, string for list of custom attributes
$endstringThe text to end the preview with (defaults to ...)

Twig

<p>{{post.get_preview(50)}}</p>

has_field #

has_field( string $field_name )

returns: boolean

NameTypeDescription
$field_namestring

has_term #

has_term( string/int $term_name_or_id, string $taxonomy="all" )

returns: bool

NameTypeDescription
$term_name_or_idstring/int
$taxonomystring

import_field #

import_field( string $field_name )

returns: void

NameTypeDescription
$field_namestring

link( )

returns: string ex: http://example.org/2015/07/my-awesome-post

get the permalink for a post object

Twig

<a href="{{post.link}}">Read my post</a>

meta #

meta( mixed/string $field_name=null )

returns: mixed

NameTypeDescription
$field_namemixed/string

modified_author #

modified_author( )

returns: \Timber\User/null A User object if found, false if not

Get the author (WordPress user) who last modified the post

Twig

Last updated by {{ post.modified_author.name }}

HTML

Last updated by Harper Lee

modified_date #

modified_date( string $date_format="" )

returns: string

NameTypeDescription
$date_formatstring

modified_time #

modified_time( string $time_format="" )

returns: string

NameTypeDescription
$time_formatstring

name #

name( )

returns: string


next #

next( bool $in_same_term=false )

returns: mixed

NameTypeDescription
$in_same_termbool

paged_content #

paged_content( )

returns: string


pagination #

pagination( )

returns: array

Get a data array of pagination so you can navigate to the previous/next for a paginated post


parent #

parent( )

returns: bool/\Timber\Timber\Post

Gets the parent (if one exists) from a post as a Timber\Post object (or whatever is set in Timber\Post::$PostClass)

Twig

Parent page: <a href="{{ post.parent.link }}">{{ post.parent.title }}</a>

password_required #

password_required( )

returns: boolean

whether post requires password and correct password has been provided


path #

path( )

returns: string

Gets the relative path of a WP Post, so while link() will return http://example.org/2015/07/my-cool-post this will return just /2015/07/my-cool-post

Twig

<a href="{{post.path}}">{{post.title}}</a>

DEPRECATED 0.20.0 use link() instead

permalink( )

returns: string


prev #

prev( bool $in_same_term=false )

returns: mixed

Get the previous post in a set

NameTypeDescription
$in_same_termbool

Twig

<h4>Prior Entry:</h4>
<h3>{{post.prev.title}}</h3>
<p>{{post.prev.get_preview(25)}}</p>

preview #

preview( )

returns: \Timber\PostPreview

Gets a preview/excerpt of your post.

If you have text defined in the excerpt textarea of your post, it will use that. Otherwise it will pull from the post_content. If there's a <!-- more --> tag, it will use that to mark where to pull through.

This method returns a Timber\PostPreview object, which is a chainable object. This means that you can change the output of the preview by adding more methods. Refer to the documentation of the Timber\PostPreview class to get an overview of all the available methods.

Twig

{# Use default preview #}
<p>{{ post.preview }}</p>
{# Change the post preview text #}
<p>{{ post.preview.read_more('Continue Reading') }}</p>
{# Additionally restrict the length to 50 words #}
<p>{{ post.preview.length(50).read_more('Continue Reading') }}</p>

tags #

tags( )

returns: array

Gets the tags on a post, uses WP's post_tag taxonomy


terms #

terms( array/string/array $args=array(), bool $merge=true, string $term_class="" )

returns: array An array of taxonomies.

Gets the terms associated with the post.

NameTypeDescription
$argsarray/string/arrayOptional. Name of the taxonomy or array of arguments.
$mergeboolDeprecated. Optional. See $merge argument in $args parameter.
$term_classstringDeprecated. Optional. See $term_class argument in $args parameter.

Twig

<section id="job-feed">
{% for post in job %}
<div class="job">
<h2>{{ post.title }}</h2>
<p>{{ post.terms( {query:{taxonomy:'category', orderby:'name', order: 'ASC'}} )|join(', ') }}</p>
</div>
{% endfor %}
</section>

HTML

<section id="job-feed">
<div class="job">
<h2>Cheese Maker</h2>
<p>Cheese, Food, Fromage</p>
</div>
<div class="job">
<h2>Mime</h2>
<p>Performance, Silence</p>
</div>
</section>

PHP

<?php
// Get all terms of a taxonomy.
$terms = $post->terms( 'category' );
// Get terms of multiple taxonomies.
$terms = $post->terms( array( 'books', 'movies' ) );
// Use custom arguments for taxonomy query and options.
$terms = $post->terms( array(
'query' => [
'taxonomy' => 'custom_tax',
'orderby' => 'count',
],
'merge' => false,
'term_class' => 'My_Term_Class'
) );

thumbnail #

thumbnail( )

returns: \Timber\Timber\Image/null of your thumbnail

get the featured image as a Timber/Image

Twig

<img src="{{ post.thumbnail.src }}" />

time #

time( string $time_format="" )

returns: string

Get the time to use in your template

NameTypeDescription
$time_formatstring

Twig

Published at {{ post.time }} // Uses WP's formatting set in Admin
OR
Published at {{ post.time | time('G:i') }} // 13:25

HTML

Published at 1:25 pm
OR
Published at 13:25

title #

title( )

returns: string

Returns the processed title to be used in templates. This returns the title of the post after WP's filters have run. This is analogous to the_title() in standard WP template tags.

Twig

<h1>{{ post.title }}</h1>

type #

type( )

returns: \Timber\PostType

Returns the post_type object with labels and other info

Twig

This post is from <span>{{ post.type.labels.name }}</span>

HTML

This post is from <span>Recipes</span>

update #

update( string $field, mixed $value )

returns: void

updates the post_meta of the current object with the given value

NameTypeDescription
$fieldstring
$valuemixed

video #

video( )

returns: \Timber\html

Returns the video

Twig

{{ post.video }}

get_post_preview_id #

get_post_preview_id( mixed $query )

returns: mixed

NameTypeDescription
$querymixed

get_post_preview_object #

get_post_preview_object( )

returns: mixed


get_revised_data_from_method #

get_revised_data_from_method( mixed $method, bool $args=false )

returns: mixed

NameTypeDescription
$methodmixed
$argsbool

get_wp_link_page( int $i )

returns: string

NameTypeDescription
$iint

maybe_show_password_form #

maybe_show_password_form( )

returns: string/void

If the Password form is to be shown, show it!


This class extends \Timber\Core

This class implements \Timber\CoreInterface