interfuel 0 Report post Posted March 8, 2011 Hello, I have a need for a unique Full-width Bottom Sidebar on certain pages. This goes a long for a need for unique Sidebars on some pages. I've created the Unique sidebars in more or less the standard WordPress way by adding them individually (register_sidebar()) in functions.php, then modifying the: <?php get_sidebar(); ?> call to: <?php $sidebar = get_post_meta($post->ID, "sidebar", true); get_sidebar($sidebar); ?> In the templates that will use the unique sidebars. Next, I created a new sidebar-mysidebar.php file for each unique sidebar, and make a call to them using Custom Fields "sidebar" = "mysidebar" in individual pages. I need to do the same thing for the Full-Width Bottom Sidebar, but am having trouble locating the iBlogpro4_dev files to edit. Looking for clues. Thanks! Frank Share this post Link to post Share on other sites
bryan-hadaway 3 Report post Posted March 9, 2011 This could have been handling much easier with this plugin: http://wordpress.org/extend/plugins/widget-logic/ Thanks, Bryan Share this post Link to post Share on other sites
interfuel 0 Report post Posted March 9, 2011 Ok, thanks. Too much information out there. I missed this in my research. Appreciate the tip. Frank Share this post Link to post Share on other sites