fair-parent-theme/sidebar.php
Joe Dolson cfe7968ff3 Commit first round of updates
Signed-off-by: Joe Dolson <design@joedolson.com>
2025-05-16 19:28:53 -05:00

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 -->