2022-10-24 23:46:53 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The sidebar containing the main widget area
|
|
|
|
*
|
|
|
|
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
|
|
|
|
*
|
|
|
|
* @package Oficina_de_Suport_theme
|
|
|
|
*/
|
|
|
|
|
2023-01-02 15:56:17 +01:00
|
|
|
if ( ! is_active_sidebar( 'sidebar-funds' ) ) {
|
2022-10-24 23:46:53 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
|
|
<aside id="secondary" class="widget-area">
|
2023-01-02 15:56:17 +01:00
|
|
|
<?php dynamic_sidebar( 'sidebar-funds' ); ?>
|
2022-10-24 23:46:53 +02:00
|
|
|
</aside><!-- #secondary -->
|