#
Repeater
A repeater template is a structure used to dynamically display repeating content, such as lists or grids, by iterating through data items. It's often used for rendering multiple items (e.g., blog posts or products) from a data source into the same layout.
Attributes:
Insert the name of your HTML fields inside curly braces to print out the corresponding variable. Refer to the field_name
in your Table Schema to identify the correct field.
{{ field_name }}
Shortcode:
[repeater]
Code Example:
[repeater id="23" limit="0,4" order="start_time asc" display_type="news"]
<h2>{{ event_title }}</h2>
<p>{{ blog_intro }}</p>
[/repeater]