Can’t get 2 dynamic sidebars working …
-
Hi,
I’ve got a theme in wich I want 2 or even three dynamic sidebars … Its not working … I can get 1 working , but the rest just doesn’t … I’ve pasted the code I use below and I want to start out with 2 dynamic sidebars..
<!– First dynamic sidebar –>
<div id=”r-sidebar”>
-
<?php if ( !function_exists(‘dynamic_sidebar’)
|| !dynamic_sidebar(1) ) : ?><?php endif; ?>
<!– second dynamic sidebar –>
<div id=”r-sidebar-left”>
-
<?php if ( !function_exists(‘dynamic_sidebar’)
|| !dynamic_sidebar(2) ) : ?><?php endif; ?>
</div>
<?php
if ( function_exists(‘register_sidebars’) )
register_sidebars(2);
?></div>
*** its basicly a sidebar nested into a main sidebar. I’ve tried to make unnested sidebars dynamic but it doesn’t make any difference. It’s still not working …
Can anyone tell me what I am doing wrong here ?
Many thanks,
-FOP-
- The topic ‘Can’t get 2 dynamic sidebars working …’ is closed to new replies.