wp_back/wp-content/themes/pampadutheme/sidebar.php

18 lines
354 B
PHP
Raw Normal View History

2024-05-20 15:37:46 +03:00
<?php
/**
* The sidebar containing the main widget area
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package PampaduTheme
*/
if ( ! is_active_sidebar( 'sidebar-1' ) ) {
return;
}
?>
<aside id="secondary" class="widget-area">
<?php dynamic_sidebar( 'sidebar-1' ); ?>
</aside><!-- #secondary -->