Can someone tell me how I can get the side bar to change to a different one (that a make) on the post pages from the ones on the main pages?
Can someone tell me how I can get the side bar to change to a different one (that a make) on the post pages from the ones on the main pages?
You want conditional tags.
In sidebar.php, something like this:
<?php if (is_single()){ ?>
... put what you want to display on single post pages ...
<?php }else{ ?>
... put what you want on the rest of your blog
<?php } ?>This topic has been closed to new replies.