To remove rendering of menus and header, plugin or theme?

Creating a Page Template is a much simpler way of alternating Page views, creating one is nice and easy:

  • Simply copy the page.php in your theme, and paste it.
  • Rename the file to anything, best practice is: page-template-something.php
  • Put the following code into the file at the very top:

 

<?php
/**
 * Template Name: My Design
 */

//get_header(); //or do whatever
  • Now you can remove everything from the page and redesign however you like.

Copying the existing page.php will give a guide on page structure, you can follow that or can create your entirely new view.

More details:

To remove rendering of menus and header, plugin or theme?

Creating a Page Template is a much simpler way of alternating Page views, creating one is nice and easy:

  • Simply copy the page.php in your theme, and paste it.
  • Rename the file to anything, best practice is: page-template-something.php
  • Put the following code into the file at the very top:

 

<?php
/**
 * Template Name: My Design
 */

//get_header(); //or do whatever
  • Now you can remove everything from the page and redesign however you like.

Copying the existing page.php will give a guide on page structure, you can follow that or can create your entirely new view.

More details: