Advertisement
nellieg

Page Template PopUp.php

Nov 21st, 2011
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: PopUp
  4. */
  5. ?>
  6.  
  7. <?php
  8. /**
  9. * The template for displaying all pages.
  10. *
  11. * This is the template that displays all pages by default.
  12. * Please note that this is the WordPress construct of pages
  13. * and that other 'pages' on your WordPress site will use a
  14. * different template.
  15. *
  16. * @package WordPress
  17. * @subpackage Twenty_Ten
  18. * @since Twenty Ten 1.0
  19. */
  20.  
  21. get_header(); ?>
  22.  
  23. <div id="container">
  24. <div id="content" role="main">
  25.  
  26. <?php
  27. /* Run the loop to output the page.
  28. * If you want to overload this in a child theme then include a file
  29. * called loop-page.php and that will be used instead.
  30. */
  31. get_template_part( 'loop', 'page' );
  32. ?>
  33.  
  34. </div><!-- #content -->
  35. </div><!-- #container -->
  36.  
  37. <?php get_sidebar(); ?>
  38. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement