Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <div id="car-list">
  2. <?php while ( have_posts() ): the_post(); ?>
  3. <a class="car" href="<?php the_permalink(); ?>">
  4. <?php
  5. if( have_rows('car_photos') ):
  6. while ( have_rows('car_photos') ) : the_row();
  7. ?>
  8. <span class="car_image" style="background-image:url('<?php the_sub_field('car_photo'); ?>');">
  9. </span>
  10. <?php
  11. break;
  12.  
  13. endwhile;
  14.  
  15. else :
  16. endif;
  17. ?>
  18. <span class="car__brand"><?php the_field('car_brand'); ?></span>
  19. <span class="car__model"><?php the_field('car_model'); ?></span>
  20. <span class="car__fuelgear">
  21. <span><?php the_field('car_fuel'); ?></span> <span><?php the_field('car_gear'); ?></span>
  22. </span>
  23. <span class="car__price">€<?php the_field('car_price'); ?><?php _e('prijs/maand - Excl. BTW','safelease-theme'); ?></span>
  24. </a>
  25. <?php endwhile; ?>
  26. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement