Skip to content

Latest commit

 

History

History
35 lines (19 loc) · 600 Bytes

File metadata and controls

35 lines (19 loc) · 600 Bytes

<row>

Node > Meta > Field > Group > Row

This element is an alias of Group, which can be used as a more verbose way of defining rows within an ACF repeater field.

Examples

Basic Usage:

Example with Repeater.

<page>

    <title>Hello, World!</title>

    <repeater name=my_list >

        <row>
        
            <title>First Row</title>
        
            <content>
            
                Lorem Ipsum
            
            </content>

        </row>

    </repeater>

</page>