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.
understrap/sidebar-hero.php

22 lines
345 B
PHP
Raw Normal View History

2016-11-21 18:47:05 +00:00
<?php
/**
* Sidebar - hero setup.
*
* @package understrap
*/
2016-01-22 13:02:32 +00:00
2016-11-21 18:47:05 +00:00
?>
2016-01-22 13:02:32 +00:00
2016-11-21 18:47:05 +00:00
<?php if ( is_active_sidebar( 'hero' ) ) : ?>
2016-01-22 13:02:32 +00:00
2016-11-21 18:47:05 +00:00
<!-- ******************* The Hero Widget Area ******************* -->
2016-01-22 13:02:32 +00:00
2016-11-21 18:47:05 +00:00
<div class="owl-carousel">
2016-01-22 13:02:32 +00:00
2016-11-21 18:47:05 +00:00
<?php dynamic_sidebar( 'hero' ); ?>
</div><!-- .owl-carousel -->
2017-01-09 15:16:08 +00:00
</div><!-- closing owl carousel -->
<?php endif; ?>