Johnny Bugs Sidebars
Sidebars for Johnny Bugs
// Register Sidebars
function johnnybugs_widgets_init() {
$args = array(
'id' => 'home-widgets',
'class' => 'home-widget-area',
'name' => __( 'Homepage Widget Area', 'text_domain' ),
'description' => __( 'Widget area located towards the bottom of the homepage.', 'text_domain' ),
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>',
'before_widget' => '<div class="widget">',
'after_widget' => '</div>',
);
register_sidebar( $args );
}
add_action( 'widgets_init', 'johnnybugs_widgets_init' );