Add a Page without header and menus?

Is it possible to add a Page in WordPress, so that none of the header or the menus of the site appears on that page?

And also so that the stuff in sidebars that’s on the rest of the site doesn’t appear. And the stuff at the bottom of the page (there’s a ‘Leave a reply’ form on the other pages.)

So on this site: http://richardclunan.com/ don’t want any of the header handwriting or the ‘hey there”https://wordpress.stackexchange.com/”portfolio”https://wordpress.stackexchange.com/”need copywriting”https://wordpress.stackexchange.com/”etc’ menu items to appear on one particular page, nor the side-bar sign-up box, nor the ‘leave a reply’ form. But I want all that stuff to appear on all other pages.

4 s
4

Create a custom Page Template, leave out the get_header(), get_footer(), and get_sidebar() calls in it, and put in your own html header/footer code in the Page template instead.

http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates

Leave a Comment