File: /home/shaping-sar.ru/public_html/wp-content/themes/beauty spa/includes/CreateSidebar.php
<?php
class CreateSidebar {
static function bautySpa_custom_sidebar() {
$args_sidebar = array (
'name' => esc_html__ ( 'Beauty Spa Sidebar', 'bautySpa' ),
'id' => 'blog-sidebar-id',
'description' => '',
'class' => 'blog-widget-container',
'before_widget' => '<div class="widget">
<div id="%1$s">',
'after_widget' => '</div></div>',
'before_title' => ' <h4 class="widget-title">',
'after_title' => '</h4>'
);
register_sidebar ( $args_sidebar );
}
static function reg_woocomerce_sidebar() {
$args_sidebar = array (
'name' => esc_html__ ( 'Beauty Spa Woocommerce Sidebar', 'bautySpa' ),
'id' => 'woocommerce-sidebar',
'description' => '',
'class' => 'class-woommerce-sidebar',
'before_widget' => '<div class="widget">
<div id ="%1$s">',
'after_widget' => '</div></div>',
'before_title' => ' <h4 class="widget-title">',
'after_title' => '</h4>'
);
register_sidebar ( $args_sidebar );
}
}