Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <link rel="stylesheet" href="<?php echo get_stylesheet_uri() ?>">
  8. <title>Document</title>
  9. </head>
  10. <body>
  11. <?php
  12. if ( have_posts() ) {
  13. while ( have_posts() ) {
  14. the_post();
  15. ?>
  16.  
  17. <h1><?php the_title(); ?></h1>
  18.  
  19. <?php
  20. the_content();
  21.  
  22. }
  23. }
  24. ?>
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement