version, '3.0', ">=" ) ) { add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); } } /** * Woocommerce Sidebar */ function rara_business_wc_widgets_init(){ register_sidebar( array( 'name' => esc_html__( 'Shop Sidebar', 'rara-business' ), 'id' => 'shop-sidebar', 'description' => esc_html__( 'Sidebar displaying only in woocommerce pages.', 'rara-business' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } /** * Before Content * Wraps all WooCommerce content in wrappers which match the theme markup */ function rara_business_wc_wrapper(){ ?>
'; dynamic_sidebar( 'shop-sidebar' ); echo '
'; } }