Advertisement
Guest User

page-confirmation.php

a guest
May 14th, 2012
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Confirmation Page
  4. */
  5.  
  6.  
  7. //Display the header
  8. get_header();
  9.  
  10. //Display the page content/body
  11. if ( have_posts() ) while ( have_posts() )
  12. {
  13. the_post();
  14. the_content();
  15. }
  16.  
  17.  
  18. //Display the footer
  19. get_footer();
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement