Formatter add-on includes several function tags to let you format strings, numbers or dates directly in fields. You will find them inside the tags selector:

The function tags included are:
Included in AutomatorWP:
- {floor( VALUE )} to round a number to the next lowest integer value.
Eg: 4.3 to 4, 4.8 to 4. - {ceil( VALUE )} to round a number to the next highest integer value.
Eg: 4.3 to 5, 4.8 to 5. - {lowercase( VALUE )} to format a value to lowercase.
Eg: “Hello, world” to “hello, world”. - {uppercase( VALUE )} to format a value to uppercase.
Eg: “Hello, world” to “HELLO, WORLD”.
Included only in the pro version of the Formatter add-on (or AutomatorWP Pro):
- {round( VALUE : ROUND )} to round a number. More info.
- {remove_html( VALUE )} to remove HTML tags from a value.
Eg: “<p>Hello</p>” to “Hello”. - {trim( VALUE )} to remove whitespace, tabs and line breaks from the beginning and end of a value.
Eg: ” Hello ” to “Hello” - {capitalize( VALUE )} to capitalize a value.
Eg: “hello, world” to “Hello, world”. - {capitalize_all( VALUE )} to capitalize all words from a value.
Eg: “hello, world” to “Hello, World”. - {reverse( VALUE )} to reverse a value.
Eg: “Hello” to “olleH”. - {shuffle( VALUE )} to shuffle all the characters from a value.
Eg: “Hello” to “leHol”. - {shuffle_words( VALUE )} to shuffle words the characters from a value.
Eg: “Hello, my friend” to “friend Hello, my”. - {slugify( VALUE )} to slugify a value.
Eg: “Hello, world” to “hello-world”.
{round( VALUE : ROUND )}
Rounds a number.
Parameters:
Paremeter | Accepts | Default |
---|---|---|
VALUE | The value of your choice | |
ROUND | INT, 1DECIMAL, 2DECIMALS, ROUND_UP and ROUND_DOWN | INT |
Examples:
Tag | Result |
---|---|
{round( 4.3 : ROUND_UP )} | 5 |
{round( 4.3 )} | 4 |
{round( 4.3 : 2DECIMALS )} | 4.30 |