numbers_hero.php
648 Bytes
<?php
/**
* Hero setup
*
* @package Understrap
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
?>
<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); ?>
<div class="header-image" id="header-image" style="background-image: url(<?php echo $image[0]; ?>);">
<div class="container" id="content">
<div class="row">
<div class="col-md-12 content-area" id="primary">
<div class="header-text">
<?php if( get_field('header_text')): ?>
<?php the_field('header_text'); ?>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>
<?php