Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <?php
  2. if ( have_posts() ) :
  3. query_posts('cat=9');
  4. while (have_posts()) : the_post();
  5. ?>
  6. <div class="new-items-numb bottom">
  7. <div class="new-item-picture">
  8. <?php the_post_thumbnail('full');?>
  9. </div>
  10. <span class="item-model"><?php echo the_title(); ?>
  11. </span>
  12. <input class="item-button" type="button" value="Заказать">
  13. </div>
  14. <?php
  15. endwhile;
  16. endif;
  17. wp_reset_query();
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement