Advanced Custom Fields

H1

<?php if( get_field('NAME HERE') ): ?><h1><?php the_field('NAME HERE'); ?></h1><?php endif; ?>

H2

<?php if( get_field('NAME HERE') ): ?><h2><?php the_field('NAME HERE'); ?></h2><?php endif; ?>

H3

<?php if( get_field('NAME HERE') ): ?><h3><?php the_field('NAME HERE'); ?></h3><?php endif; ?>

H4

<?php if( get_field('NAME HERE') ): ?><h4><?php the_field('NAME HERE'); ?></h4><?php endif; ?>

H5

<?php if( get_field('NAME HERE') ): ?><h5><?php the_field('NAME HERE'); ?></h5><?php endif; ?>

H6

<?php if( get_field('NAME HERE') ): ?><h6><?php the_field('NAME HERE'); ?></h6><?php endif; ?>

Paragraph

<?php if( get_field('NAME HERE') ): ?><p><?php the_field('NAME HERE'); ?></p><?php endif; ?>

Images


<?php $image = get_field('NAME HERE'); ?><img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" />

Text Links

<?php 
$link = get_field('NAME HERE');
if( $link ): 
    $link_url = $link['url'];
    $link_title = $link['title'];
    $link_target = $link['target'] ? $link['target'] : '_self';
    ?>
    <a class="button" href="<?php echo esc_url( $link_url ); ?>" target="<?php echo esc_attr( $link_target ); ?>"><?php echo esc_html( $link_title ); ?></a>
<?php endif; ?>

Video

<video width="100%" height="auto" controls>
<source src="<?php echo esc_url(get_field('homepage_bottom_showreel_video')); ?>" type="video/mp4">
Your browser does not support the video tag.
</video>
Posted in acf