mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
25 lines
484 B
PHP
25 lines
484 B
PHP
<?php
|
|
/**
|
|
* Sidebar setup for footer full.
|
|
*
|
|
* @package understrap
|
|
*/
|
|
|
|
$container = get_theme_mod( 'understrap_container_type' );
|
|
|
|
?>
|
|
|
|
<?php if ( is_active_sidebar( 'footer2' ) ) : ?>
|
|
|
|
<!-- ******************* The Footer Full-width Widget Area ******************* -->
|
|
|
|
<div class="col" id="footer-2">
|
|
|
|
<div class="<?php echo esc_attr( $container ); ?>" tabindex="-1">
|
|
<?php dynamic_sidebar( 'footer2' ); ?>
|
|
</div>
|
|
|
|
</div><!-- #wrapper-footer-full -->
|
|
|
|
<?php endif; ?>
|