Skip to main content

Website Fields

About This Article

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 field/function returns

Type - What kind of data this field returns

Data Types Explained

String - Text content like "My Website Name" or "https://example.com"

Mixed - Variable content that depends on what you've configured (options, custom fields, etc.)

How to Use This Data

Click the Dynamic Data Icon available on each Builderius element. Search for what you want and add it.

Global availability - All data shown works on any template and page type

Website Scope

Global data sources for your website. This includes site information (title, URLs), navigation functions, global settings, and utility functions that provide website-level data from any scope.

Built-in Data Tags (Direct Use)

These fields work immediately in builder elements - no setup required.

Basic Site Information

Dynamic Data TagDescriptionType
[[wp.site_title]]WordPress site titleString
[[wp.site_tagline]]WordPress site tagline/descriptionString
[[wp.site_url]]Site homepage URLString
[[wp.current_url]]Current page URLString

Parameters

Dynamic Data TagDescriptionType
[[wp.url_parameter__[parameter_name]]]URL parameter (replace [parameter_name] with actual parameter name)Mixed
[[wp.cookie_parameter__[cookie_name]]]Cookie parameter (replace [cookie_name] with actual cookie name)Mixed

Forms

Dynamic Data TagDescriptionType
[[wp.form_submission_url__[form_name]]]Form submission URL (replace [form_name] with your form name)String
[[wp.form_nonce__[form_name]]]Form security nonce (replace [form_name] with your form name)String

ACF Options (Site-Specific)

Dynamic Data TagDescriptionType
[[wp.acf_options_field__field_name]]ACF Options page field (replace field_name with your ACF field name)Mixed

MetaBox Options (Site-Specific)

Dynamic Data TagDescriptionType
[[wp.mb_options_field__field_name]]MetaBox Options page field (replace field_name with your MetaBox field name)Mixed

Usage Examples

<header>
<h1>[[wp.site_title]]</h1>
<p>[[wp.site_tagline]]</p>
<img src="[[wp.acf_options_field__site_logo]]" alt="Site Logo">
</header>

<div class="search-results">
<h2>Search for: [[wp.url_parameter__search_term]]</h2>
<p>Page: [[wp.url_parameter__page]]</p>
</div>

<form action="[[wp.form_submission_url__contact]]" method="post">
<input type="hidden" name="nonce" value="[[wp.form_nonce__contact]]">
<input type="text" name="name" placeholder="Your Name">
<button type="submit">Send</button>
</form>