Advanced Title and Content fields

Displaying custom fields, taxonomy terms and user meta fields within the live result titles or contents

With these options you can combine or replace more fields to the title and description field. There are two default variables:

  1. {titlefield} - this is the default title value as set on the title field

  2. {descriptionfield} - the default description value as set on the description field

..as well as a number of special variables:

{__id}, {__content}, {__title}, {__image}, {__link}, {__date}, {__author}

Anything besides these inside "{}" crates is treated as a custom field name or taxonomy name if prefixed with '_taxonomy_' or '__tax_' words. These fields support HTML tags as well.

Custom field syntax

{custom_field}

This will print the content of the custom field (post meta) named 'custom_field'.

User meta field syntax (author meta)

{__um_custom_field}

Taxonomy term (category, post tag etc..) syntax

{_taxonomy_category} or{__tax_category}

This will print 5 items from the category taxonomy, separated by comma. These values are changeable via arguments, as well as other things:

{__tax_category count=5 separator=', ' orderby='name' order='ASC' exclude='1'}

Accepted arguments:

  • count - (int) number of terms to print, default: 5

  • separator - (string) separator between the items, default: ', '

  • orderby - (string) the ordering criteria ( 'name', 'slug', 'term_group', 'term_id', 'id', 'description', 'parent'), default: 'name'

  • order - (string) the ordering direction ('ASC', 'DESC'), default 'ASC'

  • exclude - (string) comma separated list of excluded terms from the list, default: '1' (aka. the Uncategorized category)

Date formatting and date custom fields

For date fields such as Events calendar or other plugin date fields, the date_format argument can be used to pass the date format. The list of accepted PHP date format parameters can be found here.

Example

<p><strong>Starting at:</strong> {_EventStartDate date_format="Y M, d, D"}

..will output:

Simple usage examples

Example 1: You have a custom field called 'location', which holds the location name for each post, and you want to display it before the description, separated by comma.

The simplest solution would be:

{location}, {descriptionfield}

You can use HTML tags in this field as well, so let's display the location in bold letters:

<strong>{location}</strong>, {descriptionfield}

Example 2: You have WooCommerce installed and you want to output the title in the following format: "Product name - 10$"

In this case the _price custom field holds the price of a product. Then simply try the following input in the Advanced title field:

{titlefield} - {_price}

Note, that you don't need the currency symbol, the plugin will automatically detect and display it along with the formatted price! (only works with WooCommerce)

Equivalently, as in the previous example, displaying the price in strong letters:

{titlefield} - <strong>{_price}</strong>

Other notable WooCommerce fields:

  • _price_html- will display the original output of the price field, requested from WooCommerce, this includes the regular and sale price when available, like: 25.00$ 22.00$

  • _regular_price - the regular price

  • _sale_price - the sale price

  • _sku - The product SKU field

  • _stock - Product stock count

  • _stock_status - Either "instock" or "outofstock"

Example 3: You want to display 2 post categories before the post content, separated by space.

The category taxonomy contains the post categories, so the syntax is:

<p><strong>Categories:</strong> {_taxonomy_category count=2 separator=' '}</p>
{descriptionfield}

Resulting in:

Notice, that the taxonomy field is placed into a paragraph, so it shows up in a new line.

Conditional bracket examples

Conditional brackets are used to display custom fields, only if they have values, simple as that. If the fields in the conditional brackets does not have value or does not exist, then everything in the bracket is ignored.

Syntax

[text 1 {field1} text 2 {field2} ..text n {fieldN}..]

..where {field1} to {fieldN} is replaced with their values, and the text between the fields is displayed as it is. HTML is supported. If any of the fields is empty or does not exist, then nothing from the brackets is displayed. This becomes especially handy, if the custom fields are only set on some of the post type objects.

Examples

Example 1

You have WooCommerce and want to display some text and the price in the title, but some items does not have prices. Like so: Item title - Price: 10.0$

You need to use conditional brackets, as you don't want to display the '- Price' text if there is no price set:

{titlefield}[ - Price: {_price}]

This will result in:

Example 2

You have WooCommerce and want to display some text and the sale price, if not on sale, then the regular price in the title - but some items does not have prices. Like so: Item title - Now only: 9$ instead of - 10.0$

You need to use conditional brackets, as you don't want to display the '- Price' text if there is no price set:

{titlefield}[ - Now only: {_sale_price} instead of][ - {_regular_price}]

This will result in:

Last updated