HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/jennysmasks.com/wp-content/themes/kelly/sidebar.php
<?php
/**
 * The Sidebar containing the main widget areas.
 *
 * @package kelly
 */

if ( ! is_active_sidebar( 'sidebar-1' ) && ! is_active_sidebar( 'sidebar-2' ) && ! is_active_sidebar( 'sidebar-3' ) )
	return;
?>
	<div id="secondary" class="widget-areas clear" role="complementary">
		<div class="widget-areas-inner">
			<?php do_action( 'before_sidebar' ); ?>
			<?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
				<div class="widget-area">
					<?php dynamic_sidebar( 'sidebar-1' ); ?>
				</div>
			<?php endif; // end sidebar widget area ?>
			<?php if ( is_active_sidebar( 'sidebar-2' ) ) : ?>
				<div class="widget-area">
					<?php dynamic_sidebar( 'sidebar-2' ); ?>
				</div>
			<?php endif; // end sidebar widget area ?>
			<?php if ( is_active_sidebar( 'sidebar-3' ) ) : ?>
				<div class="widget-area">
					<?php dynamic_sidebar( 'sidebar-3' ); ?>
				</div>
			<?php endif; // end sidebar widget area ?>
		</div>
	</div><!-- #secondary -->