HEX
Server: Apache
System: Linux d8507.use1.stableserver.net 5.14.0-570.30.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 30 05:12:29 EDT 2025 x86_64
User: dacusvillerec (1045)
PHP: 8.2.32
Disabled: NONE
Upload Files
File: /home/dacusvillerec/public_html/wp-content/themes/exponent/sidebar.php
<?php
/**
 * The Sidebar containing the main (right) widget area.
 *
 * @package WordPress
 * 
 * 
 */  
	$sidebar_sticky = get_query_var( 'sidebar_sticky' );
?>
<div class="<?php echo be_themes_get_class( 'sidebar' ); ?>">
	<div class="<?php echo !empty( $sidebar_sticky ) ? 'be-sidebar-sticky' : ''; ?> <?php echo be_themes_get_class( 'sidebar-inner'); ?>">
		<?php
			global $wp_registered_sidebars; 
			$sidebar_array = array();
			foreach ( $wp_registered_sidebars as $key => $value ) {
				$sidebar_array[] = $key;
			}
			if( is_page() ) {
				$sidebar = get_post_meta(get_the_ID(), be_themes_get_meta_prefix() . 'page_sidebar', true);
			}
			if( is_home() || is_singular( 'post' ) ) {
				$sidebar = be_themes_get_option( 'blog_loop_sidebar_name' );
			}
			if( be_themes_is_woocommerce_activated() && function_exists('is_shop') && function_exists('is_product') && function_exists('is_product_category') && function_exists('is_product_tag') && (is_shop() || is_product_category() || is_product_tag() || is_product()) ) {
				$sidebar = be_themes_get_option( 'wc_loop_sidebar_name' );
			}
			if( empty( $sidebar ) || !in_array( $sidebar, $sidebar_array ) ) {
				$sidebar = 'default-sidebar';
			}
			if (is_active_sidebar( $sidebar ) ) {
				dynamic_sidebar( $sidebar );
			}
		?>
	</div>
</div>