Guest User

Untitled

a guest
Dec 17th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <?php
  2.  
  3. // Stop if there's nothing to display.
  4. if ( ! have_rows( 'services', 'option' ) ) {
  5. return false;
  6. }
  7.  
  8. if ( have_rows( 'services', 'option' ) ) : ?>
  9.  
  10. <?php while ( have_rows( 'services', 'option' ) ) : the_row();
  11.  
  12. // Services Sub Repeater.
  13. if ( have_rows( 'services_list' ) ) : ?>
  14.  
  15. <ul class="services">
  16.  
  17. <?php
  18. while ( have_rows( 'services_list' ) ) : the_row();
  19.  
  20. $image = get_sub_field( 'icon' );
  21. $title = get_sub_field( 'service_title' );
  22. ?>
  23.  
  24. <li class="services-single">
  25. <img src="<?php echo esc_url( $image['sizes']['thumbnail'] ); ?>" alt="<?php echo esc_html( $image['alt'] ); ?>"?>
  26. <?php echo esc_html( $title ); ?>
  27. </li>
  28.  
  29. <?php endwhile; ?>
  30. </ul>
  31.  
  32. <?php endif; ?>
  33. <?php endwhile; ?>
  34. <?php endif; ?>
Add Comment
Please, Sign In to add comment