Guest User

Untitled

a guest
May 23rd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <?php $products = new WP_Query(array(
  2. 'post_type' => 'products',
  3. 'post_status' => 'publish',
  4. 'orderby' => 'date',
  5. 'posts_per_page' => 3,
  6. 'paged' => get_query_var('paged'),
  7. ));
  8. if ($products->have_posts()) : while ($products->have_posts()) : $products->the_post(); ?>
  9. <div class="post">
  10. <?php if (has_post_thumbnail()) { ?>
  11. <a class="thumb" href="<?php the_permalink(); ?>">
  12. <?php the_post_thumbnail(); ?>
  13. </a>
  14. <?php } ?>
  15. <div class="info">
  16. <time datetime="<?php echo get_the_date('Y-m-d'); ?>"> | <?php echo get_the_date('F d,Y'); ?></time>
  17. <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
  18. </div>
  19. </div>
  20. <?php endwhile; endif; wp_reset_query(); ?>
Add Comment
Please, Sign In to add comment