<?php // Get Fields $hero_title = get_field('hero_title') ?: 'Hero Title Goes here'; $hero_copy = get_field('hero_copy') ?: 'The Hero copy goes here'; $hero_background = get_field('hero_background'); ?> code example
Example: displaying a image background with acf options
<div id="mainPhoto" style="background-image: url(<?php the_field('background_image'); ?>);">
<div id="pageTitle">
<?php the_field('page_title'); ?>
</div>
</div>