facetwp table output

<?php
/** basic table dsiplay in a loop for display code **/
?>

<table>
  <tr><th>column 1</th><th>column 2</th><th>column 3</th>
  <?php while ( have_posts() ): the_post(); ?>
    <tr><td><?php /** content **/ ?></td><td><?php /** content **/ ?></td><td><?php /** content **/ ?></td>
  <?php endwhile; ?>
</table>