I am developing themes of WordPress. I am trying to showing the
widget area. In the appearance area my widget option is showing
correctly but in main home screen the widgets are not showing
properly. The widget area showing bullet point on the right side of my template. Please anyone help to solve my code and mention what is the error???
My code
register_sidebar(array(
'name'=> __('Right Hand Sidebar'),
'id' => 'right-sidebar',
'description' => __('Widgets in this area will be shown on the right-hand side'),
'before_title' => '<h2>',
'after_title' => '</h2>',
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>'
));
1 comment
Comments are closed.