| Current Path : /home/goldnueh/public_html/wp-content/themes/coolair/inc/ |
| Current File : /home/goldnueh/public_html/wp-content/themes/coolair/inc/theme-sidebar.php |
<?php
function coolair_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Sidebar', 'coolair' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'This is sidebar area for blog post and single post.', 'coolair' ),
'before_widget' => '<section id="%1$s" class="widget %2$s">',
'after_widget' => '</section>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
) );
}
add_action( 'widgets_init', 'coolair_widgets_init' );