| Server IP : 46.62.235.243 / Your IP : 216.73.216.217 Web Server : Apache/2.4.58 (Ubuntu) System : Linux Linkabili3Dicembre 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/wordpress/wp-content/themes/empowerwp-pro/ |
Upload File : |
<?php
/**
* The sidebar containing the main widget area
*
*/
if (!is_active_sidebar('sidebar-1') || !apply_filters('mesmerize_blog_sidebar_enabled', true)) {
return;
}
?>
<div class="sidebar col-sm-4 col-md-3">
<?php
if (apply_filters('empower_blog_sidebar_author_bio', true) && (is_author() || is_singular())) :
$author_info = get_the_author_meta('description');
if (!$author_info && is_customize_preview()) {
$author_info = esc_html__('Author bio info example. This area will appear only if the user Biographical Info is filled', 'empowerwp');
}
?>
<?php if ($author_info) : ?>
<div class="widget empower_widget_auhor_info">
<h5 class="widgettitle"><?php esc_html_e('About the author', 'empowerwp'); ?></h5>
<div class="textwidget">
<?php echo wpautop($author_info); ?>
</div>
</div>
<?php endif; ?>
<?php endif; ?>
<div class="empower-sidebar-panel bg-color-white">
<?php dynamic_sidebar('sidebar-1'); ?>
</div>
</div>