Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <section id="full-width-image">
  2. <?php if ( have_rows( 'project_image' ) ) : ?>
  3. <?php while ( have_rows( 'project_image' ) ) : the_row(); ?>
  4. <?php if ( get_sub_field( 'project_image' ) ) { ?>
  5.  
  6. <a href="<?php the_sub_field( 'project_url' ); ?>" target="_blank">
  7. <div id="project-image" style="background: url(<?php echo the_sub_field( 'project_image' ); ?>) no-repeat top center; background-size: cover;"></div>
  8. </a>
  9.  
  10. <?php } ?>
  11. <?php endwhile; ?>
  12. <?php else : ?>
  13. <?php // no rows found ?>
  14. <?php endif; ?>
  15. </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement