HEX
Server: Apache
System: Linux webm020.cluster127.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: bohousj (181416)
PHP: 8.4.22
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/bohousj/medal/wp-content/themes/choicy/inc/choicy-register-widgets.php
<?php

/**
 * Register widget area.
 *
 * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
 *
 */

function choicy_widgets_init() {

    /**
     * blog sidebar
     */
    register_sidebar( [
        'name'          => esc_html__( 'Blog Sidebar', 'choicy' ),
        'id'            => 'blog-sidebar',
        'before_widget' => '<div id="%1$s" class="tx-blog-widget widget sidebar-box mt-30 wow fadeInUp %2$s">',
        'after_widget'  => '</div></div>',
        'before_title'  => '<h6 class="widget-title sidebar-box-title chy-heading-1">',
        'after_title'   => '</h6><div class="sidebar-box-wrap">',
    ] );

    if ( CHOICY_WOOCOMMERCE_ACTIVED ) {
        // shop sidebar
        register_sidebar( [
            'name'          => esc_html__( 'Product Sidebar', 'choicy' ),
            'id'            => 'product-sidebar',
            'before_widget' => '<div id="%1$s" class="tx-blog-widget widget sidebar-box mb-30 wow fadeInUp %2$s">',
            'after_widget'  => '</div>',
            'before_title'  => '<h6 class="widget-title sidebar-box-title chy-heading-1">',
            'after_title'   => '</h6>',
        ] );
    }

    $footer_widgets = cs_get_option( 'footer_widget_number' );

}
add_action( 'widgets_init', 'choicy_widgets_init' );