balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

sidebar.php (349B)


      1 <?php
      2 /**
      3  * The sidebar containing the main widget area
      4  *
      5  * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
      6  *
      7  * @package appside
      8  */
      9 
     10 if ( ! is_active_sidebar( 'sidebar-1' ) ) {
     11 	return;
     12 }
     13 ?>
     14 
     15 <aside id="secondary" class="widget-area">
     16 	<?php dynamic_sidebar( 'sidebar-1' ); ?>
     17 </aside><!-- #secondary -->