Post Fields
This article covers built-in WordPress dynamic data FIELDS that are automatically available in Builderius without custom queries. All fields shown work immediately when you add them to elements.
Understand the Tables
Table Columns
Dynamic Data Tag - The tag automatically added when you select from the Dynamic Data dropdown, using square bracket syntax: [[wp.field_name]]
Description - What content this tag will display on your website
Type - What kind of data this field returns
Data Types Explained
String - Text content like "How to Build Better Websites" or "https://example.com/my-post"
Int - Whole numbers like post ID 142 or author ID 5
Mixed - Variable content that depends on your custom fields and meta values
How to Use This Data
Click the Dynamic Data Icon available on each Builderius element. Search for what you want and add it.
Post template availability - All data shown works on single post and page templates
Post Scope
Data about individual posts, pages, and custom post types. Available when viewing single post templates - includes the current post's content, metadata, author information, and custom fields.
Built-in Data Tags (Direct Use)
These fields work immediately in post template content - no setup required.
Standard Post Fields
| Dynamic Data Tag | Description | Type |
|---|---|---|
[[wp.post.title]] | Post title | String |
[[wp.post.ID]] | Post ID | Int |
[[wp.post.link]] | Full post URL | String |
[[wp.post.datetime]] | Publication datetime | String |
[[wp.post.date]] | Publication date | String |
[[wp.post.modified_datetime]] | Last modified datetime | String |
[[wp.post.modified_date]] | Last modified date | String |
[[wp.post.content]] | Post content (processed) | String |
[[wp.post.excerpt]] | Post excerpt (with word limit parameter) | String |
[[wp.post.status]] | Post status | String |
[[wp.post.type]] | Post type | String |
Featured Image
Featured image sizes work with all refistered image sizes present in the database. Both buil-in WordPress sizes, and eventual custom sizes you have made.
| Dynamic Data Tag | Description | Type |
|---|---|---|
[[wp.post.featured_image.file_url__original]] | Featured image URL (original size) | String |
[[wp.post.featured_image.file_url__thumbnail]] | Featured image URL (thumbnail size) | String |
[[wp.post.featured_image.file_url__medium]] | Featured image URL (medium size) | String |
[[wp.post.featured_image.file_url__medium_large]] | Featured image URL (medium large size) | String |
[[wp.post.featured_image.file_url__large]] | Featured image URL (large size) | String |
[[wp.post.featured_image.file_url__size_1536x1536]] | Featured image URL (1536x1536 size) | String |
[[wp.post.featured_image.file_url__size_2048x2048]] | Featured image URL (2048x2048 size) | String |
[[wp.post.featured_image.alt_text]] | Featured image alt text | String |
[[wp.post.featured_image.caption]] | Featured image caption | String |
Post Taxonomies
| Dynamic Data Tag | Description | Type |
|---|---|---|
[[wp.post.category_names]] | Comma-separated category names | String |
[[wp.post.category_links]] | HTML category links | String |
[[wp.post.tag_names]] | Comma-separated tag names | String |
[[wp.post.tag_links]] | HTML tag links | String |
Post Author
| Dynamic Data Tag | Description | Type |
|---|---|---|
[[wp.post.author.name]] | Author username | String |
[[wp.post.author.id]] | Author user ID | Int |
[[wp.post.author.display_name]] | Author display name | String |
[[wp.post.author.first_name]] | Author first name | String |
[[wp.post.author.last_name]] | Author last name | String |
[[wp.post.author.email]] | Author email | String |
[[wp.post.author.avatar]] | Author avatar URL | String |
Post Meta & Custom Fields
| Dynamic Data Tag | Description | Type |
|---|---|---|
[[wp.post.meta_field__field_name]] | Post meta field (replace field_name with actual meta key) | Mixed |
[[wp.post.author.meta_field__field_name]] | Post author meta field (replace field_name with actual meta key) | Mixed |
ACF Fields (Site-Specific)
| Dynamic Data Tag | Description | Type |
|---|---|---|
[[wp.post.acf_field__field_name]] | ACF field (replace field_name with your ACF field name) | Mixed |
[[wp.post.author.acf_field__field_name]] | ACF field for post author (replace field_name with your ACF field name) | Mixed |
MetaBox Fields (Site-Specific)
| Dynamic Data Tag | Description | Type |
|---|---|---|
[[wp.post.mb_field__field_name]] | MetaBox field (replace field_name with your MetaBox field name) | Mixed |
[[wp.post.author.mb_field__field_name]] | MetaBox field for post author (replace field_name with your MetaBox field name) | Mixed |
Usage Examples
- Basic Post Display
- Custom Fields
- Responsive Images
- Author Information
Complete Post Article Layout:
<article>
<header>
<h1>[[wp.post.title]]</h1>
<div class="meta">
<span>By [[wp.post.author.display_name]]</span>
<time>[[wp.post.date]]</time>
<span>Type: [[wp.post.type]]</span>
</div>
</header>
<img src="[[wp.post.featured_image.file_url__medium]]"
alt="[[wp.post.featured_image.alt_text]]">
<div class="content">
[[wp.post.content]]
</div>
<footer>
<div>Categories: [[wp.post.category_links]]</div>
<div>Tags: [[wp.post.tag_links]]</div>
<div>Last updated: [[wp.post.modified_date]]</div>
</footer>
</article>
Using Custom Fields:
<!-- ACF Fields Example -->
<div class="product">
<h2>[[wp.post.acf_field__product_name]]</h2>
<p>Price: $[[wp.post.acf_field__price]]</p>
<p>SKU: [[wp.post.acf_field__sku]]</p>
<p>In Stock: [[wp.post.acf_field__in_stock]]</p>
</div>
<!-- MetaBox Fields Example -->
<div class="event">
<h3>[[wp.post.title]]</h3>
<p>Date: [[wp.post.mb_field__event_date]]</p>
<p>Location: [[wp.post.mb_field__venue]]</p>
<p>Capacity: [[wp.post.mb_field__max_attendees]]</p>
</div>
<!-- Post Meta Example -->
<div class="custom-info">
<p>Custom Field: [[wp.post.meta_field__my_custom_field]]</p>
<p>External ID: [[wp.post.meta_field__external_id]]</p>
</div>
Responsive Featured Images:
<!-- Basic responsive image -->
<picture>
<source media="(min-width: 1200px)"
srcset="[[wp.post.featured_image.file_url__large]]">
<source media="(min-width: 768px)"
srcset="[[wp.post.featured_image.file_url__medium]]">
<img src="[[wp.post.featured_image.file_url__thumbnail]]"
alt="[[wp.post.featured_image.alt_text]]">
</picture>
<!-- Image with caption -->
<figure>
<img src="[[wp.post.featured_image.file_url__medium_large]]"
alt="[[wp.post.featured_image.alt_text]]">
<figcaption>[[wp.post.featured_image.caption]]</figcaption>
</figure>
<!-- High-DPI image -->
<img src="[[wp.post.featured_image.file_url__large]]"
srcset="[[wp.post.featured_image.file_url__size_2048x2048]] 2x"
alt="[[wp.post.featured_image.alt_text]]">
Author Information Card:
<div class="author-card">
<img src="[[wp.post.author.avatar]]"
alt="[[wp.post.author.display_name]]">
<div class="author-info">
<h3>[[wp.post.author.display_name]]</h3>
<p>[[wp.post.author.first_name]] [[wp.post.author.last_name]]</p>
<p>Username: [[wp.post.author.name]]</p>
<!-- Author custom fields -->
<p>Bio: [[wp.post.author.acf_field__author_bio]]</p>
<p>Website: [[wp.post.author.acf_field__website]]</p>
<a href="mailto:[[wp.post.author.email]]">Contact Author</a>
</div>
</div>
<!-- Simple byline -->
<div class="byline">
<span>Written by <strong>[[wp.post.author.display_name]]</strong></span>
<span>on [[wp.post.date]]</span>
</div>