Home › Forums › General Issues › Dynamic Table with ACF › Reply To: Dynamic Table with ACF
You’re table start and table end markup needs to be outside of the loop
if ($preisvergleich->have_posts()) {
// ouptut start of table here;
?>
<table>
<thead>
<tr>
<th>heading 1</th>
<th>etc...</th>
</tr>
</thead>
<tbody>
<?php
while ($preisvergleich->have_posts()) {
$preisvergleich->the_post();
// output each row of the table here
} // end while
// output end of table here
?>
</tbody>
</table>
<?php
} // end if have posts
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.