I would like to get the sidebar only in the posts not the pages. Will this work?
<?php if (is_single()) { get_sidebar() } ?>
I would like to get the sidebar only in the posts not the pages. Will this work?
<?php if (is_single()) { get_sidebar() } ?>
Is this better?
<?php if (is_single()) {get_sidebar();} ?>
This topic has been closed to new replies.