2016-11-21 18:47:05 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Sidebar setup for footer full.
|
|
|
|
*
|
|
|
|
* @package understrap
|
|
|
|
*/
|
2017-02-01 16:10:32 +00:00
|
|
|
|
2019-06-20 08:57:12 +00:00
|
|
|
// Exit if accessed directly.
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
2018-09-10 21:59:04 +00:00
|
|
|
|
2018-09-01 18:14:46 +00:00
|
|
|
$container = get_theme_mod( 'understrap_container_type' );
|
2017-01-27 14:37:59 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
?>
|
2016-03-09 08:32:44 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<?php if ( is_active_sidebar( 'footerfull' ) ) : ?>
|
2016-03-09 08:32:44 +00:00
|
|
|
|
2016-12-10 21:07:03 +00:00
|
|
|
<!-- ******************* The Footer Full-width Widget Area ******************* -->
|
2016-03-09 08:32:44 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<div class="wrapper" id="wrapper-footer-full">
|
|
|
|
|
2017-06-08 14:54:29 +00:00
|
|
|
<div class="<?php echo esc_attr( $container ); ?>" id="footer-full-content" tabindex="-1">
|
2017-01-25 09:24:51 +00:00
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
<?php dynamic_sidebar( 'footerfull' ); ?>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
2016-11-21 18:47:05 +00:00
|
|
|
|
|
|
|
</div><!-- #wrapper-footer-full -->
|
2016-03-09 08:32:44 +00:00
|
|
|
|
2019-07-04 14:58:08 +00:00
|
|
|
<?php endif;
|