Virtue Themes How to create a page without header, menu, sidebar and footer?
-
I have tried to create a page without header, menu, sidebar and footer.
This is my code. But it does not want to work with Virtue Theme
Wass I make wrong can someone help?
<?php
/**
* Template Name: Clean Page
* This template will only display the content you entered in the page editor
*/
?>
<html <?php language_attributes(); ?> class=”no-js”>
<head>
<meta charset=”<?php bloginfo( ‘charset’ ); ?>”>
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<?php wp_head(); ?>
</head>
<body>
<?php
while ( have_posts() ) : the_post();
the_content();
endwhile;
?>
<?php wp_footer(); ?>
</body>
</html>
Viewing 15 replies - 1 through 15 (of 15 total)
Viewing 15 replies - 1 through 15 (of 15 total)
- The topic ‘Virtue Themes How to create a page without header, menu, sidebar and footer?’ is closed to new replies.