Issue making 2nd sidebar dynamic
-
I’m using this theme. I’ve already managed to decode the footer, etc. and make some major changes to the template (I like the layout, not the graphics, etc.) and customize most of it the way I want it.
The issue is that I cannot seem to make my second sidebar (right side) dynamic. Part of the problem, I think, is that one of my sidebars is called from within the footer.
I’m not sure which files you might need to see, so I’ll post functions, sidebar and footer – I can add any others as requested.
My brain knows there’s a simple solution – and supposedly, this is a fully widget/dynamic enabled theme, but darn if I can figure out how to turn the non-dynamic, dynamic on this one.
Any help would be appreciated.
Function:
<?php if ( function_exists('register_sidebar') ) register_sidebar(array( 'name' => 'Sidebar Left', 'before_widget' => '', 'after_widget' => '', 'before_title' => '<h3>', 'after_title' => '</h3>', )); register_sidebar(array( 'name' => 'Sidebar Right', 'before_widget' => '', 'after_widget' => '', 'before_title' => '<h3>', 'after_title' => '</h3>', )); ?>
Sidebar:
<!-- Sidebar --> <div class="sidebar"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(1) ) : ?> <?php endif; ?> </div> <!-- Sidebar -->
Footer:
<!-- Sidebar --> <div class="clear"></div> </div></div></div> <!-- /Main --> <!-- Footer --> <div id="footer"> <!-- Copyright --> <div id="copyright"> <br />(c)Copyrighted LSS, All Rights Reserved.<br /> </div> <!-- /Copyright --> </div> <!-- Footer --> </div> <!-- /Page --> </body> </html>
- The topic ‘Issue making 2nd sidebar dynamic’ is closed to new replies.