Guest User

Untitled

a guest
Feb 24th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <?php
  2. /**
  3. * Template Name: Clean Page
  4. * This template will only display the content you entered in the page editor
  5. */
  6. ?>
  7.  
  8. <html <?php language_attributes(); ?> class="no-js">
  9. <head>
  10. <meta charset="<?php bloginfo( 'charset' ); ?>">
  11. <meta name="viewport" content="width=device-width, initial-scale=1">
  12. <?php wp_head(); ?>
  13. </head>
  14. <body>
  15. <?php
  16. while ( have_posts() ) : the_post();
  17. the_content();
  18. endwhile;
  19. ?>
  20. <?php wp_footer(); ?>
  21. </body>
  22. </html>
Add Comment
Please, Sign In to add comment