Change.
<?php if ( function_exists ( dynamic_sidebar(sidebar-optional) ) ) : ?>
<?php dynamic_sidebar (sidebar-optional); ?>
<?php endif; ?>
to.
<?php if ( function_exists ( 'dynamic_sidebar' ) && dynamic_sidebar('sidebar-optional') ) : endif; ?>
Darn, unfortunately that doesn’t work either. Any other ideas?
When that’s the same code i use to display one of my sidebars…
Perhaps there’s a problem with the registering sidebar code…
Try using this format..
register_sidebar(array(
'name' => 'PUTNAMEHERE',
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h2>',
'after_title' => '</h2>',
));
Success! Thank you so much!
(Weird because my regular sidebars worked fine on the code I showed you but hey as long as it works 🙂