Merge pull request #740 from noelspringer/fix-missing-sidebar
Fix missing sidebar.php
This commit is contained in:
commit
be9c91a767
17
sidebar.php
17
sidebar.php
|
@ -0,0 +1,17 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The sidebar containing the main widget area.
|
||||||
|
*
|
||||||
|
* @package understrap
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ( ! is_active_sidebar( 'sidebar-1' ) ) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div class="col-md-4 widget-area" id="secondary" role="complementary">
|
||||||
|
|
||||||
|
<?php dynamic_sidebar( 'sidebar-1' ); ?>
|
||||||
|
|
||||||
|
</div><!-- #secondary -->
|
Reference in New Issue