HEX
Server: Apache/2.4.65 (Debian)
System: Linux web6 5.10.0-36-amd64 #1 SMP Debian 5.10.244-1 (2025-09-29) x86_64
User: innocamp (1028)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/buildff/public_html/wp-content/themes/essentials/sidebar.php
<?php

/**
 * The sidebar containing the main widget area
 *
 * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
 *
 * @package essentials
 */

global $post;
global $woocommerce;
$sidebar_id = 'sidebar-1';

$posttype = get_post_type($post);

$order = '';
if ($woocommerce && is_shop() || $woocommerce && is_product_category() || $woocommerce && is_product_tag()) {
	if (!empty(pix_get_option('shop-layout')) && pix_get_option('shop-layout') == 'left-sidebar') {
		$order = 'order-sm-1';
	}
}
$sticky_class = 'sticky-bottom';

$pagePostTypes = array('page');
$pagePostTypes = apply_filters('pixfort_page_options_post_types', $pagePostTypes);

if (pix_get_option('sidebar-page-sticky')) {
	$sticky_class = pix_get_option('sidebar-page-sticky');
}
if (get_post_meta(get_the_ID(), 'pix-page-sidebar-sticky', true)) {
	if (get_post_meta(get_the_ID(), 'pix-page-sidebar-sticky', true) !== '') {
		$sticky_class = get_post_meta(get_the_ID(), 'pix-page-sidebar-sticky', true);
	}
}

if (!function_exists('pix_sanitize_sidebar')) {
	function pix_sanitize_sidebar($id) {
		$id = str_replace(' ', '', strtolower($id));
		$id = preg_replace('/[^A-Za-z0-9\-]/', '', $id);
		$id = sanitize_title($id);
		return $id;
	}
}
?>
<div class="sidebar col-12 col-md-4 <?php echo esc_html($order); ?>">
	<div class="w-100 h-100 d-flex align-items-start">
		<aside id="secondary" class="widget-area <?php echo esc_attr($sticky_class); ?> pix-sticky-sidebar pix-boxed-widgets w-100 pix-pb-30 pix-sidebar-adjust">
			<?php
			if (function_exists('dynamic_sidebar')) {
				if ($woocommerce && is_shop() || $woocommerce && is_product_category() || $woocommerce && is_product_tag() || $woocommerce && is_product()) {
					if (pix_get_option('sidebar-shop')) {
						$sidebar_id = pix_get_option('sidebar-shop');
					}
					$sidebar_id = pix_sanitize_sidebar($sidebar_id);
					dynamic_sidebar($sidebar_id);
				} elseif (((is_archive()) || (is_author()) || (is_category()) || (is_home()) || (is_single()) || (is_tag()))) {
					if ($posttype === 'post') {

						if (pix_get_option('sidebar-blog')) {
							$sidebar_id = pix_get_option('sidebar-blog');
						}
					} elseif ($posttype === 'portfolio') {
						if (pix_get_option('sidebar-portfolio')) {
							$sidebar_id = pix_get_option('sidebar-portfolio');
						}
					}
					if (in_array($posttype, $pagePostTypes)) {
						if (get_post_meta(get_the_ID(), 'pix-page-sidebar', true) !== '') {
							$sidebar_id = get_post_meta(get_the_ID(), 'pix-page-sidebar', true);
						} else {
							if (pix_get_option('sidebar-page')) {
								$sidebar_id = pix_get_option('sidebar-page');
							}
						}
					}
					$sidebar_id = pix_sanitize_sidebar($sidebar_id);
					dynamic_sidebar($sidebar_id);
				} elseif (is_page_template(
					array(
						'templates/template-blog-right-sidebar.php',
						'templates/template-blog-left-sidebar.php'
					)
				)) {
					if (get_post_meta(get_the_ID(), 'pix-page-sidebar', true) !== '') {
						$sidebar_id = get_post_meta(get_the_ID(), 'pix-page-sidebar', true);
					} else {
						if (pix_get_option('sidebar-blog')) {
							$sidebar_id = pix_get_option('sidebar-blog');
						}
					}
					$sidebar_id = pix_sanitize_sidebar($sidebar_id);
					dynamic_sidebar($sidebar_id);
				} elseif (is_page_template(
					array(
						'templates/template-right-sidebar.php',
						'templates/template-left-sidebar.php'
					)
				)) {
					if (pix_get_option('sidebar-page')) {
						$sidebar_id = pix_get_option('sidebar-page');
					}
					if (get_post_type() == 'page' && get_post_meta(get_the_ID(), 'pix-page-sidebar', true)) {
						$sidebar_id = get_post_meta(get_the_ID(), 'pix-page-sidebar', true);
					}
					$sidebar_id = pix_sanitize_sidebar($sidebar_id);
					dynamic_sidebar($sidebar_id);
				} elseif ($woocommerce && is_shop() || $woocommerce && is_product_category() || $woocommerce && is_product_tag() || $woocommerce && is_product()) {
					if (pix_get_option('sidebar-shop')) {
						$sidebar_id = pix_get_option('sidebar-shop');
					}
					$sidebar_id = pix_sanitize_sidebar($sidebar_id);
					dynamic_sidebar($sidebar_id);
				} else {
					dynamic_sidebar('sidebar-1');
				}
			}
			?>
		</aside>
	</div>
</div>