Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. <?php
  2.  
  3. $args = array(
  4. 'post_type' => 'stock',
  5. 'posts_per_page' => 2,
  6. );
  7.  
  8. $stock = new WP_Query($args);
  9.  
  10.  
  11. if( $stock->have_posts() ):?>
  12.  
  13. <?php while ($stock->have_posts()): $stock->the_post(); ?>
  14.  
  15. <div class="row box_barcos_opt">
  16. <div class="col-md-12">
  17. <div class="col-md-10 col-md-offset-1 col-ms-10 col-ms-offset-1 col-xs-12 box_barco">
  18. <div class="col-md-5 col-ms-12 col-xs-12 bg_opt" style="background: url(<?php the_field('image'); ?>)no-repeat center center / cover"></div>
  19.  
  20. <div class="col-md-7 col-ms-12 col-xs-12 box_info_opt">
  21. <div class="col-md-6 col-sm-6 col-xs-6">
  22. <h4><?php the_field('modelo'); ?></h4>
  23.  
  24. <table class="table_opt">
  25.  
  26. <tr>
  27. <td class="info_barcos">Tipo:</td>
  28. <td class="resp_info"><?php the_field('tipo'); ?></td>
  29. </tr>
  30.  
  31. <tr>
  32. <td class="info_barcos">Gama</td>
  33. <td class="resp_info"><?php the_field('gama'); ?></td>
  34. </tr>
  35.  
  36. <tr>
  37. <td class="info_barcos">Marca:</td>
  38. <td class="resp_info"><?php the_field('marca'); ?></td>
  39. </tr>
  40.  
  41. <tr>
  42. <td class="info_barcos">Modelo:</td>
  43. <td class="resp_info"><?php the_field('modelo'); ?></td>
  44. </tr>
  45.  
  46. </table>
  47. </div>
  48.  
  49. <div class="col-md-6 col-sm-6 col-xs-6">
  50. <p><span class="precio_desc"><?php the_field('precio'); ?>€</span></p>
  51. </div>
  52.  
  53. </div>
  54.  
  55. <a class="ver_barco" href="<?php echo get_permalink(); ?>">ver mas</a>
  56.  
  57. </div>
  58. </div>
  59. </div>
  60.  
  61. <?php endwhile; ?>
  62.  
  63. <?php
  64. next_posts_link( 'Next', 10 );
  65. previous_posts_link( 'Previous' );
  66. ?>
  67.  
  68. <?php else: ?>
  69.  
  70. <h2 class="sin_registros">No hay barcos en stock actualmente</h2>
  71.  
  72. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement