Advertisement
alchymyth

page template 'without header'

Apr 26th, 2011
350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.60 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Seite ohne Header
  4. */
  5. /**
  6.  * A page template 'without header'.
  7.  *
  8.  * @package WordPress
  9.  * @subpackage Twenty_Ten
  10.  * @since Twenty Ten 1.0
  11.  */
  12.  
  13. get_header('ohne'); ?>
  14.  
  15.         <div id="container">
  16.             <div id="content" role="main">
  17.  
  18.             <?php
  19.             /* Run the loop to output the page.
  20.              * If you want to overload this in a child theme then include a file
  21.              * called loop-page.php and that will be used instead.
  22.              */
  23.             get_template_part( 'loop', 'page' );
  24.             ?>
  25.  
  26.             </div><!-- #content -->
  27.         </div><!-- #container -->
  28.  
  29. <?php get_sidebar(); ?>
  30. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement