mirror of
https://gh.wpcy.net/https://github.com/fairpm/fair-parent-theme.git
synced 2026-04-27 21:10:54 +08:00
22 lines
541 B
PHP
22 lines
541 B
PHP
<?php
|
|
/**
|
|
* The sidebar containing the main widget area
|
|
* Implement your custom sidebar to this file.
|
|
*
|
|
* @Date: 2019-10-15 12:30:02
|
|
* @Last Modified by: Timi Wahalahti
|
|
* @Last Modified time: 2019-10-15 14:35:42
|
|
*
|
|
* @package fair-parent
|
|
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
|
|
*/
|
|
|
|
namespace Fair_Parent;
|
|
|
|
if ( ! is_active_sidebar( 'sidebar-1' ) ) {
|
|
return;
|
|
} ?>
|
|
|
|
<aside id="secondary" class="widget-area">
|
|
<?php dynamic_sidebar( 'sidebar-1' ); ?>
|
|
</aside><!-- #secondary -->
|