Advertisement
Guest User

Untitled

a guest
Jul 28th, 2011
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.87 KB | None | 0 0
  1. <?php
  2.  
  3. /* Template Name: Full Width */
  4.  
  5. global $shortname;
  6.  
  7. get_header();
  8.  
  9. ?>
  10.  
  11. <div id="wrapper">
  12.  
  13.     <a id="top"></a>
  14.    
  15.     <?php get_template_part( 'navigation' ); ?>
  16.    
  17.     <!-- PAGE BODY -->
  18.     <span id="content-shadow"></span>
  19.    
  20.     <div id="content-holder">
  21.    
  22.         <div id="content" class="clearfix">
  23.            
  24.             <?php if ( have_posts() ): ?>
  25.                
  26.                 <?php while ( have_posts() ): the_post(); ?>
  27.                
  28.                     <article>
  29.                        
  30.                         <h1><?php the_title(); ?></h1>
  31.                        
  32.                         <?php if ( !empty( $post->post_excerpt ) && get_post_meta( $post->ID, $shortname.'_show_excerpt', true ) == 'on' ) { ?>
  33.                             <h5><?php the_excerpt(); ?></h5>
  34.                         <?php } ?>
  35.  
  36.                         <?php the_content(); ?>
  37.                        
  38.                     </article>                 
  39.                        
  40.                     </div>
  41.                
  42.                 <?php endwhile; ?>
  43.                
  44.             <?php endif; ?>
  45.            
  46.         </div>     
  47.        
  48.     </div>
  49.     <!-- END PAGE BODY -->
  50.    
  51.     <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement