Title: Remove Sidebars
Last modified: August 20, 2016

---

# Remove Sidebars

 *  [jostoga](https://wordpress.org/support/users/jostoga/)
 * (@jostoga)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/remove-sidebars/)
 * Hi!
    How can I remove SIDEBARS from one particular page? I use this theme: [http://newwpthemes.com/wordpress-theme/permanent/](http://newwpthemes.com/wordpress-theme/permanent/)
 * Thanks

Viewing 5 replies - 1 through 5 (of 5 total)

 *  [peredur](https://wordpress.org/support/users/peredur/)
 * (@peredur)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/remove-sidebars/#post-2240933)
 * Create a page-permanent.php file that outputs the layout you want.
 * See the [WordPress Template Hierarchy](http://codex.wordpress.org/images/1/18/Template_Hierarchy.png).
 * I’d copy the contents of page.php into it as a starter and then mess with it 
   until it provided what I wanted.
 * Cheers
 * PAE
 *  [Alex](https://wordpress.org/support/users/netxm/)
 * (@netxm)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/remove-sidebars/#post-2241049)
 * in your page.php replace get_sidebar() with this, and replace your_id with page
   ID number:
 *     ```
       if (!is_page('your_id')) {
       get_sidebar();
       }
       ```
   
 *  [jvyda](https://wordpress.org/support/users/jvyda/)
 * (@jvyda)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/remove-sidebars/#post-2241051)
 * you could make a copy of the page template and then remove the get_sidebar() 
   from that page and save it. While adding the page, where you do not need the 
   side bar select the template file you just created from the drop down and you
   are done.
 * adding the code which “netxm” suggests to the page would allow you to get the
   sidebar instead of ignoring it.
 *  Thread Starter [jostoga](https://wordpress.org/support/users/jostoga/)
 * (@jostoga)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/remove-sidebars/#post-2241054)
 * How can I add a new template, when I do not have DROP DOWN menu there?
    Thanks
 *  [Alex](https://wordpress.org/support/users/netxm/)
 * (@netxm)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/remove-sidebars/#post-2241095)
 * create new file in your theme
 * you-page.php and put this on top of your page
 *     ```
       <?php 
   
       /** Template Name: Your Template **/
   
       ?>
       ```
   

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Remove Sidebars’ is closed to new replies.

 * 5 replies
 * 4 participants
 * Last reply from: [Alex](https://wordpress.org/support/users/netxm/)
 * Last activity: [14 years, 9 months ago](https://wordpress.org/support/topic/remove-sidebars/#post-2241095)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
