?AlkantarClanX12

Your IP : 216.73.217.134


Current Path : /home/rankinh/numerik/wp-content/plugins/blackdsn-helper-plugin/inc/
Upload File :
Current File : /home/rankinh/numerik/wp-content/plugins/blackdsn-helper-plugin/inc/blackdsn-function-widget.php

<?php

add_action('widgets_init', function () {

    $before_widget = '<div id="%1$s" class="widget %2$s">';
    $after_widget = '</div>';
    $before_title = '<h4 class="title-s heading title-style">';
    $after_title = '</h4>';

    /**
     *
     * Woocommerce  Sidebar Blog
     *
     */
    register_sidebar(array(
        'id' => 'wc-sidebar-1',
        'name' => esc_html__('Blackdsn Woocommerce Sidebar', 'blackdsn'),
        'description' => esc_html__('This is the widgetized Woocommerce sidebar.', 'blackdsn'),
        'before_widget' => $before_widget,
        'after_widget' => $after_widget,
        'before_title' => $before_title,
        'after_title' => $after_title,
    ));


    /**
     *
     * Woocommerce  Cart
     *
     */
    register_sidebar(array(
        'id' => 'wc-sidebar-cart',
        'name' => esc_html__('Blackdsn Woocommerce Cart', 'blackdsn'),
        'description' => esc_html__('This is the widgetized Cart Woocommerce.', 'blackdsn'),
        'before_widget' => $before_widget,
        'after_widget' => $after_widget,
        'before_title' => $before_title,
        'after_title' => $after_title,
    ));


});