I am having trouble on getting a certain sidebar to only show on the home page. This is the code I have in my sidebar.php for this sidebar:
<?php if (is_home()) {?>
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar('Home right') ) :
endif; ?>
<?php } ?>
I am certain it is not a css problem. I have made a different sidebar to only show on the about page and I used the same code as above except I replaced "is_home()" with "is_page('About')" and it worked fine. I know I can do it with a separate php file and just call to that php file in the index.php, but I really do not want to have to do that. Right now the not working home right sidebar is showing up on every page. Please help, Thanks!