Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <tr>
  2. <?php
  3. // The Query
  4. $args = array(
  5. 'post_type' => array( 'pratos_dos_dia', 'grelhados_do_dia' ),
  6. 'posts_per_page' => 12
  7. );
  8. $the_query = new WP_Query( $args );
  9. $counter = 0;
  10.  
  11. // The Loop
  12. while ( $the_query->have_posts() ) {
  13. $the_query->the_post(); ?>
  14. <td><h2><?php the_title(); ?></h2><br><h5><?php the_field('acompanhamento'); ?><h5></td>
  15. <td><h5><?php the_field('meia_dose'); ?>€</h5></td>
  16. <td><h5><?php the_field('dose'); ?>€</h5></td>
  17.  
  18. <?php
  19. if ($counter % 2 != 0 ){
  20. echo '</tr><tr>';
  21. }
  22. $counter++;
  23.  
  24. }
  25. /* Restore original Post Data */
  26. wp_reset_postdata();
  27.  
  28. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement