esc_html__( 'Shop Sidebar', 'agency-x' ), 'id' => 'shop-sidebar', 'description' => esc_html__( 'Sidebar displaying only in woocommerce pages.', 'agency-x' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } /** * Callback function for Shop sidebar */ function agency_x_wc_sidebar_cb(){ if( is_active_sidebar( 'shop-sidebar' ) ){ echo '
'; dynamic_sidebar( 'shop-sidebar' ); echo '
'; } } ?>