How do I remove "pages" sidebar from all pages & posts
-
This is my website:
https://www.crockattandscott.co.uk/I’ve managed to remove the sidebar titled “Pages” from the homepage by going into Main Index Template (index.php)
and changing
<?php get_sidebar(); ?>
to
<?php if (!is_front_page()) {
get_sidebar();
} ?>But I’d like to remove it from all the other pages. How do I do this?
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘How do I remove "pages" sidebar from all pages & posts’ is closed to new replies.