File: D:/HostingSpaces/ERijn/knijft.eu/wwwroot/wp-content/themes/cheope/sidebar-shop.php
<?php
/**
* Your Inspiration Themes
*
* @package WordPress
* @subpackage Your Inspiration Themes
* @author Your Inspiration Themes Team <info@yithemes.com>
*
* This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://www.gnu.org/licenses/gpl-3.0.txt
*/
wp_reset_query();
if( yit_get_sidebar_layout() == 'sidebar-no' )
{ return; }
do_action( 'yit_before_sidebar_' . sanitize_title( yit_get_choosen_sidebar() ) ) ?>
<!-- START SIDEBAR -->
<div id="sidebar-<?php echo sanitize_title( yit_get_choosen_sidebar() ) ?>" class="span<?php echo is_woocommerce() && yit_get_option( 'shop-sidebar-width' ) == '2' ? 2 : 3 ?> sidebar group">
<?php
if( !function_exists( 'dynamic_sidebar' ) || !dynamic_sidebar( yit_get_choosen_sidebar() ) )
{ do_action( 'yit_default_sidebar' ); }
?>
</div>
<!-- END SIDEBAR -->
<?php do_action( 'yit_after_sidebar_' . sanitize_title( yit_get_choosen_sidebar() ) ) ?>
</div>