Skip to main content
All CollectionsDynamic ShortcodesFeaturesAdvanced Features
Understanding String Output in Dynamic Shortcodes
Understanding String Output in Dynamic Shortcodes

The '', "", and [] syntax

Updated over 2 weeks ago

When working with Dynamic Shortcodes, handling string outputs correctly is crucial to ensure proper functionality.

Dynamic Shortcodes provide three different ways to define strings: '' (single quotes), "" (double quotes), and [] (square brackets). Each of these has a distinct purpose and behaves differently when processing shortcodes.

1. Single Quotes ('')

Single quotes are used to define literal strings. When a string is enclosed in single quotes, it is treated as plain text, meaning that any shortcodes inside it will not be expanded. Unlike double quotes, single quotes do not allow escape sequences like \n, but they allow double quotes (") inside without needing to escape them.

Example:

{identity:'Hello {user:display_name}!'}

Output:

Hello {user:display_name}!

In this case, {user:display_name} remains unchanged because it is inside a single-quoted string.

2. Double Quotes ("")

Double quotes also define literal strings, similar to single quotes. They do not expand shortcodes inside them. However, the key difference between '' and "" is that double quotes allow escaping special characters like \n for a new line, and you can include a single quote (') without needing to escape it.

Example:

{identity:"Hello\n{user:display_name}'s profile!"}

Output:

Hello {user:display_name}'s profile!

As with single quotes, {user:display_name} is not processed as a shortcode but remains as plain text.

3. Square Brackets ([])

Square brackets are used when you need to include shortcodes within a string and ensure they are expanded correctly.

Example:

{identity:[Hello {user:display_name}!]}

Output (assuming the user name is John):

Hello John!

Here, {user:display_name} is dynamically processed and replaced with the actual user’s name.

Why [] is necessary for Shortcode Expansion

If you place a shortcode inside '' or "", it will be treated as plain text rather than being evaluated. If you need shortcodes inside a string to be processed, always use [].

Incorrect Example:

{identity:'The title is {post:title}'}

Output:

The title is {post:title}

Correct Example:

{identity:[The title is {post:title}]}

Output (assuming the post title is "Dynamic Shortcodes Guide"):

The title is Dynamic Shortcodes Guide

HTML Entity Escaping and Security Considerations

For security reasons, Dynamic Shortcodes sometimes escape certain characters. Specifically, { may be translated into the HTML entity ({).

Most of the time, users won’t notice this because HTML entities are correctly rendered in standard contexts. However, in some cases—such as raw text output or certain rendering environments—HTML entities may not be processed correctly, and users might see { literally instead of {.

Summary

Syntax

Behavior

Expands Shortcodes?

'' (single quotes)

Treats content as plain text allows double quotes inside

❌ No

"" (double quotes)

Treats content as plain text allows escaping special characters, allows single quotes inside

❌ No

[] (square brackets)

Expands shortcodes within the string

✅ Yes

Always use [] when you need a string that contains shortcodes to be processed dynamically.

Did this answer your question?