Skip to content

Table Field

In the Tables field, select the required table from the list of all tables.

table

Result:

table output

Output:

php
{$items|print}
Array
(
    [0] => Array
        (
            [title] => Slide 1
        )

    [1] => Array
        (
            [title] => Slide 2
        )

    [2] => Array
        (
            [title] => Slide 3
        )

)

Example:

html
<ul>
  {foreach $items as $item}
    <li>{$item.title}</li>
  {/foreach}
</ul>

© PageBlocks 2019-present