blob: 46e0e7221537107faa9a1fdcd9e53b644d91c373 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
/**
* Sidebar - hero canvas setup.
*
* @package understrap
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
?>
<?php if ( is_active_sidebar( 'herocanvas' ) ) : ?>
<!-- ******************* The Hero Canvas Widget Area ******************* -->
<?php dynamic_sidebar( 'herocanvas' ); ?>
<?php endif; ?>
|