Hello,
I would like to add a new widget area. (Recent Posts on the Main page.)
I added this to widgets.php :
register_sidebar(array(
'name' => 'Frontpage',
'before_widget' => '<div id="%1$s" class="box_small box widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>',
));
and this to sidebar.php
if ($k_option['showSidebar'] == 'frontpage' && dynamic_sidebar('Frontpage Sidebar') ) : $default_sidebar = false; endif;
Nothing happens. I can't even see the new widget area in Appereance -Widgets.
Can anybody help me out ?
Thank you.














