Reusable fields are the most versatile way of creating a field.
Once created, then can be reused anywhere in your site and they automatically support all WordPress installations out the box as they can be added via shortcodes or blocks.
Reusable fields can be created via our admin dashboard.
Launch the Field editor
Navigate to the Fields screen

Select the “Add New” button to open the field editor.

Creating a reusable field
Once you’ve opened the field editor, the general steps to create a field are:
- Enter a name
- Choose your field type – find out more about field types.
- Configure the field options using the inspector panel (the right sidebar)
- Save the field
Adding a field to your site
Using a shortcode
A shortcode is provided at the bottom of the field editor once you’ve saved your field – which can be used throughout your site to position the field.

Via the block editor
To add reusable fields via the block editor, you can use the Reusable Field block:

Once added, you can find the field in the inspector by searching by the reusable field name:

Via PHP
To add a field via PHP, we can use the WordPress function do_shortcode()
and use the shortcode provided in the Field Editor screen:
<?php
echo do_shortcode( '[searchandfilter field="New Field"]' );
?>