Delete sidebar for certain pages?
-
Hi there,
I am using the blue box theme at https://www.commonwaters.net and I would like to delete the sidebar on my “links” page.
From the Blue Box themes folder, I copied the page.php file and renamed it page_no_sidebar.php. In the latter I deleted <?php get_sidebar(); ?>.
I then replaced that string in page.php with the following:
<?php if (is_page(‘links’) ):
// we’re in the links page, and using a modified template ?>
<?php include (‘page_no_sidebar.php’); ?>>
<?php } elseif (is_page() ):
// we’re using the default template ?>
<?php include (‘sidebar.php’); ?>>
<?php endif; // end the if, no templates for other pages ?>Where have I gone wrong? I am a newbie so thank you for your help!
Valerie
- The topic ‘Delete sidebar for certain pages?’ is closed to new replies.