File: /home/lilleyandgillie.co.uk/public_html-20250117121400/wp-content/themes/it-company/sidebar.php
<?php
/**
* The Sidebar containing the main widget areas.
* @package IT Company
*/
?>
<div id="sidebar">
<?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?>
<aside role="complementary" aria-label="sidebar1" id="archives" class="widget">
<h3 class="widget-title"><?php esc_html_e( 'Archives', 'it-company' ); ?></h3>
<ul>
<?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
</ul>
</aside>
<aside role="complementary" aria-label="sidebar2" id="meta" class="widget">
<h3 class="widget-title"><?php esc_html_e( 'Meta', 'it-company' ); ?></h3>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<?php wp_meta(); ?>
</ul>
</aside>
<?php endif; // end sidebar widget area ?>
</div>