Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. $query = new WP_Query( $args );
  2. if ( $query->have_posts() ) { ?>
  3. <table>
  4. <?php $i = 0;
  5. while( $query->have_posts() ) {
  6. $query->the_post(); ?>
  7. <?php if($i == 0){ echo "<tr>"; }?>
  8. <td class="item_post_man">
  9. <a href="<?php echo get_permalink(); ?>">
  10. <?php if ( has_post_thumbnail() ) {
  11. the_post_thumbnail('thumb_product_cat', array( 'class' => 'img-responsive' ));
  12. } ?>
  13. <p class="title_man"><?php the_title(); ?></p>
  14. </a>
  15. </td>
  16. <?php $i++;?>
  17. <?php if($i == 3){ echo "</tr>"; $i=0;}?>
  18. <?php } ?>
  19. </table>
  20. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement