Advertisement
Guest User

Untitled

a guest
Mar 25th, 2014
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. HEADER
  2.  
  3.  
  4. <script type="text/javascript">
  5. ( function($) {
  6. $(document).ready(function(){
  7. $('#product-slider').bxSlider({
  8. pagerCustom: '#bx-pager',
  9. pager: 'false'
  10. });
  11. });
  12. } ) ( jQuery );
  13. </script>
  14.  
  15.  
  16. HTML
  17.  
  18. <div class="featured_image grid_5">
  19.  
  20. <?php if(get_field('prod-images')): ?>
  21. <div id="product-slider">
  22. <?php while(the_repeater_field('prod-images')): ?>
  23. <?php $image = wp_get_attachment_image_src(get_sub_field('prod-image'), 'full'); ?>
  24. <?php $thumb = wp_get_attachment_image_src(get_sub_field('prod-image'), 'thumbnail'); ?>
  25. <img src="<?php echo $image[0]; ?>" alt="<?php the_sub_field('title');?>" rel="<?php echo $thumb[0]; ?>" />
  26. <?php endwhile; ?>
  27. </div>
  28. <?php endif; ?>
  29. </div>
  30.  
  31. <?php if(get_field('prod-images')): ?>
  32. <div class="image_thumbs grid_1">
  33. <div id="bx-pager">
  34. <?php while(the_repeater_field('prod-images')): ?>
  35. <?php $image = wp_get_attachment_image_src(get_sub_field('prod-image'), 'full'); ?>
  36. <?php $thumb = wp_get_attachment_image_src(get_sub_field('prod-image'), 'thumbnail'); ?>
  37. <a data-slide-index="" href="#"><img src="<?php echo $image[0]; ?>" alt="<?php the_sub_field('title');?>" rel="<?php echo $thumb[0]; ?>" /></a>
  38. <?php endwhile; ?>
  39. </div>
  40. <?php endif; ?>
  41. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement