Hey Vfx
I would like to have different sidebars on different pages. For example on the "Contact" page, I'd like the main sidebar. On the "About" page I'd like a different sidebar.
Here's what I've done so far
1) Added this code to the top of widgets.php
// About
register_sidebar(array(
'name' => __('about','BigFeature'),
'id' => 'main-sidebar',
'after_widget' => '<div class="clear"></div>',
'before_title' => '<div class="widgetheading"><h2>',
'after_title' => '</h2></div>',
));
2) Created a custom template page with this code:
<?php get_sidebar('about'); ?>
3) I've then gone to Appearance > Widgets and tried adding to the new "about" sidebar.
When I save and go to the "About" page, I'm not seeing my new sidebar, just the main sidebar. Any ideas?
Squid