Simple Way to Add More Widgetized Area

icon_big

There is time when we need to add more widgets to the wordpress. But how can you do it to a theme that already define a single sidebar? I found useful article here:

1) Change the functions.php


'sidebar1',
'before_widget' => '',
'after_widget' => '',
'before_title' => '

',
'after_title' => '

',
));
register_sidebar(array('name'=>'sidebar2',
'before_widget' => '',
'after_widget' => '',
'before_title' => '

',
'after_title' => '

',
));
?>

2. Call it in the template





Prev PostCara merosakkan otak
Next PostUsing SIP Phone with Nokia E71

Leave a reply