Support

Account

Home Forums ACF PRO Displaying data in table for different records Reply To: Displaying data in table for different records

  • You may try this code. It’s works for me.

    <table class="ACFTable">
    <col width="40%">
    <col width="60%">
    <thead>
    <tr>
    <th>Field Heading</th>
    </tr>
    </thead>
    <tbody>
    <tr>
    <td>Field Title</td>
    <td><?php the_field( 'field_value' ); ?></td></tr>
    </tbody>
    </table>