Guest User

Untitled

a guest
Dec 14th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <?php
  2. $introduction_text = get_field('introduction_text');
  3. $introduction_background_image = get_field('introduction_background_image');
  4. ?>
  5.  
  6.  
  7. <section class="scene" <?php if($introduction_background_image): ?> style="background-image:url(<?php echo esc_attr( $introduction_background_image ); ?>);" <?php endif; ?> >
  8.  
  9. <div class="container text">
  10. <div class="col-md-6 col-md-offset-3">
  11. <p><?php echo $introduction_text; ?></p>
  12. </div>
  13. </div>
  14.  
  15. </section>
Add Comment
Please, Sign In to add comment