Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <?php
  2. $args = array(
  3. 'post_type' => 'product',
  4. 'stock' => 1,
  5. 'posts_per_page' => 4,
  6. 'orderby' => 'date',
  7. 'order' => 'DESC',
  8. );
  9. $loop = new WP_Query( $args );
  10. while ( $loop->have_posts() ) :
  11. $loop->the_post();
  12. global $product;
  13. ?>
  14. <div class="span3">
  15. <li>
  16. <!-- HTML anchor and other stuff goes here -->
  17. </li>
  18. </div>
  19. <?php
  20. endwhile;
  21. wp_reset_query();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement