HEX
Server: nginx/1.24.0
System: Linux nowruzgan 6.8.0-57-generic #59-Ubuntu SMP PREEMPT_DYNAMIC Sat Mar 15 17:40:59 UTC 2025 x86_64
User: babak (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/meysamkiani.com/root/wp-content/themes/libretto/sidebar.php
<?php
/**
 * This "sidebar" for widgets actually appears just above the site footer.
 *
 * @package Libretto
 */

$active_sidebars = libretto_get_active_sidebars();

// No sidebars? No content!
if ( 0 === count( $active_sidebars )  ) {
	return;
}
?>

<section id="footer-sidebar" class="clear widget-area" role="complementary">
	<?php // Otherwise, let's loop through every activated sidebar, and put it in a div
	foreach ( $active_sidebars as $sidebar_name ) :
		echo '<div id="'. esc_attr( $sidebar_name ) .'" class="widget-block">';
		dynamic_sidebar( esc_attr( $sidebar_name ) );
		echo '</div>';
	endforeach;
	?>
</section><!-- #secondary -->