If you would like to add a second widget you can register one in the functions.php file.
Thread Starter
austa
(@austa)
Thanks for your response. Is there any plugin that automatically register and show Secondary Widget Area in Widget.
you could try this one but not sure how well it would work. I always create my own, so I have full control.
http://wordpress.org/extend/plugins/add-widgets-to-page/
Thread Starter
austa
(@austa)
Thanks for you fast response, I will try it.
Here is how i do it. I put this in my functions.php file and change the name and id, you could also add a class and descriptions.
register_sidebar(array(
'name' => __('Name of Widget', 'themeoptions');
'description' => 'Description',
'id' => 'widget_name_id',
'before_widget' => '<li>',
'after_widget' => '</li>',
'before_title' => '<h3>',
'after_widget' => '</h3>',));
More info: http://codex.wordpress.org/Function_Reference/register_sidebar
Thread Starter
austa
(@austa)
I found the solution with the plugin called Dynamic Sidebar. THANKS ALOT….FOR YOUR HELP.