This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
|
<?php
|
|
/**
|
|
* Hero setup.
|
|
*
|
|
* @package understrap
|
|
*/
|
|
|
|
?>
|
|
|
|
<?php if ( is_active_sidebar('hero') or is_active_sidebar('statichero')) : ?>
|
|
|
|
<div class="wrapper" id="wrapper-hero">
|
|
|
|
<?php get_sidebar( 'hero' ); ?>
|
|
|
|
<?php get_sidebar( 'statichero' ); ?>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|