Don't like ads? PRO users don't see any ads ;-)
Guest

Page Template PopUp.php

By: nellieg on Nov 21st, 2011  |  syntax: None  |  size: 0.81 KB  |  hits: 62  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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(); ?>