Advertisement
Guest User

Untitled

a guest
May 25th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <div class="hero">
  2. <?php the_post_thumbnail('imagen-hero');?>
  3. <div class="texto-hero">
  4. <?php the_field('texto_principal');?>
  5. </div>
  6. </div>
  7.  
  8. <?php
  9. if( have_rows('bloques') ): ?>
  10. <div class="bloques">
  11. <?php while ( have_rows('bloques') ) : the_row(); ?>
  12.  
  13. <div class="columna">
  14.  
  15. <?php
  16. $image = get_sub_field('imagen');
  17.  
  18. if( !empty($image) ): ?>
  19. <img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" />
  20. <?php endif; ?>
  21.  
  22. <h3><?php the_sub_field('titulo');?></h3>
  23. <p><?php the_sub_field('subtitulo');?></p>
  24.  
  25. </div>
  26.  
  27. <?php endwhile;?>
  28. </div>
  29. <?php endif;
  30. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement