Sophia-After-Dark/sidebar.php

17 lines
354 B
PHP
Raw Normal View History

2023-07-04 11:21:47 -07:00
<?php
/**
* The sidebar containing the main widget area
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Sophia After Dark
* @since 1.0.0
*/
if ( ! is_active_sidebar( 'sidebar-1' ) ) {
return;
}
?>
<aside id="secondary" class="widget-area">
<?php dynamic_sidebar( 'sidebar-1' ); ?>
2024-04-15 17:03:43 -07:00
</aside>