File: /home/clinicamaciel/www/index_lixo/wp-content/themes/CherryFramework/includes/sidebar-init.php
<?php
// Register sidebars by running cherry_widgets_init() on the widgets_init hook.
add_action( 'widgets_init', 'cherry_widgets_init' );
function cherry_widgets_init() {
// Sidebar Widget
// Location: the sidebar
register_sidebar( array(
'name' => theme_locals("sidebar"),
'id' => 'main-sidebar',
'description' => theme_locals("sidebar_desc"),
'before_widget' => '<div id="%1$s" class="widget">',
'after_widget' => '</div>',
'before_title' => '<h3>',
'after_title' => '</h3>',
) );
// Footer Widget Area 1
// Location: at the top of the footer, above the copyright
register_sidebar( array(
'name' => theme_locals("footer_1"),
'id' => 'footer-sidebar-1',
'description' => theme_locals("footer_desc"),
'before_widget' => '<div id="%1$s">',
'after_widget' => '</div>',
'before_title' => '<h4>',
'after_title' => '</h4>',
) );
// Footer Widget Area 2
// Location: at the top of the footer, above the copyright
register_sidebar( array(
'name' => theme_locals("footer_2"),
'id' => 'footer-sidebar-2',
'description' => theme_locals("footer_desc"),
'before_widget' => '<div id="%1$s">',
'after_widget' => '</div>',
'before_title' => '<h4>',
'after_title' => '</h4>',
) );
// Footer Widget Area 3
// Location: at the top of the footer, above the copyright
register_sidebar( array(
'name' => theme_locals("footer_3"),
'id' => 'footer-sidebar-3',
'description' => theme_locals("footer_desc"),
'before_widget' => '<div id="%1$s">',
'after_widget' => '</div>',
'before_title' => '<h4>',
'after_title' => '</h4>',
) );
// Footer Widget Area 4
// Location: at the top of the footer, above the copyright
register_sidebar( array(
'name' => theme_locals("footer_4"),
'id' => 'footer-sidebar-4',
'description' => theme_locals("footer_desc"),
'before_widget' => '<div id="%1$s">',
'after_widget' => '</div>',
'before_title' => '<h4>',
'after_title' => '</h4>',
) );
} ?>