Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. <?php if (have_posts()) : ?>
  2. <section id="productos" class="ultimos">
  3. <?php while (have_posts()) : the_post(); ?>
  4. <?php
  5. $imagen = get_field('imagen');
  6. $marca = get_field('marca');
  7. $modelo = get_field('modelo');
  8. $ml = get_field('tamaño');
  9. $cod = get_field('codigo');
  10. $precio = get_field('precio');
  11. $precio_oferta = get_field('precio_oferta');
  12. ?>
  13. <article class="producto">
  14. <a href="<?php the_permalink(); ?>">
  15. <div class="img">
  16. <?php if( !empty($imagen) ):?>
  17. <img src="<?php echo $imagen; ?>" alt="<?php the_title(); ?>">
  18. <?php endif; ?>
  19. </div>
  20. <div class="txt">
  21. <h4><?php echo $modelo; ?></h4>
  22. <p><?php echo $marca; ?></p>
  23. <p class="ml"><span><?php echo $ml; ?> ml. | Cód: <?php echo $cod; ?></span></p>
  24. <?php if( !empty($precio_oferta) ):?>
  25. <p class="p-pa"><?php echo $precio; ?></p>
  26. <p class="p-pn"><?php echo $precio_oferta; ?></p>
  27. <?php else: ?>
  28. <p class="p-pn"><?php echo $precio; ?></p>
  29. <?php endif; ?>
  30. </div>
  31. <span class="mas">Ver Más</span>
  32. </a>
  33. </article>
  34. <?php endwhile; ?>
  35. </section>
  36. <div class="navigation">
  37. <div id="nav-prev"><?php previous_posts_link('&laquo; Previous Entries') ?></div>
  38. <div id="nav-next"><?php next_posts_link('Next Entries &raquo;','') ?></div>
  39. </div>
  40.  
  41. <?php else : ?>
  42. <p>No se encontraron productos en esta categoría.</p>
  43. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement