HEX
Server: LiteSpeed
System: Linux php-prod-1.spaceapp.ru 5.15.0-160-generic #170-Ubuntu SMP Wed Oct 1 10:06:56 UTC 2025 x86_64
User: xnsbb3110 (1041)
PHP: 8.1.33
Disabled: NONE
Upload Files
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 );
	}
}