HEX
Server: Apache
System: Linux main79 6.1.0-52-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.180-1 (2026-08-03) x86_64
User: serwer143450 (7544)
PHP: 7.4.33
Disabled: opcache_reset, opcache_invalidate, opcache_compile_file, opcache_get_configuration, opcache_get_status
Upload Files
File: /home/platne/serwer143450/public_html/osada/wp-content/themes/empowerwp-pro/sidebar.php
<?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>