isaacadams

ACF - Code

Jan 7th, 2021
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <p><?php the_field('header_subtext'); ?></p>
  2.  
  3. <?php $image = get_field('header_image'); if( !empty( $image ) ): ?>
  4. <div style="background-image:url(<?php echo esc_url($image['url']); ?>);">
  5. <?php endif; ?>
  6.  
  7.  
  8. <?php $image = get_field('services_image1'); if( !empty( $image ) ): ?>
  9. <img class="img-fluid" src="<?php echo esc_url($image['url']); ?>" alt="<?php echo esc_attr($image['alt']); ?>" />
  10. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment