How can I edit the php to get my WordPress sidebar to only appear on select pages (i.e. not on the home and about pages)?
I’d prefer php over css if possible.
How can I edit the php to get my WordPress sidebar to only appear on select pages (i.e. not on the home and about pages)?
I’d prefer php over css if possible.
You must be logged in to post a comment.
You could create a page template that doesn’t include the call to
get_sidebar()
, then just use that template for whichever pages you don’t want your sidebar appearing on.You can use the function is_page() in your template and rendering the sidebar only if you need to.
Small example, in
sidebar.php
of the twentyten theme of WordPressThis little snippet outputs the sidebar only if you are in the page that has the slug ‘my-page’.
Hope this helps!