Advertisement
iamasgor

Marquee Post

Mar 5th, 2014
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.67 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4. Template Name: Full Width
  5. */
  6.  
  7. ?>
  8.  
  9. <?php get_header(); ?>
  10.  
  11.     <?php //Display Page Header
  12.         global $wp_query;
  13.         $postid = $wp_query->post->ID;
  14.         echo page_header( get_post_meta($postid, 'qns_page_header_image', true) );
  15.         wp_reset_query();
  16.     ?>
  17.            
  18.     <!-- BEGIN .section -->
  19.     <div class="section">
  20.        
  21.         <ul class="columns-content page-content clearfix">
  22.            
  23.             <!-- BEGIN .full-width -->
  24.             <li class="full-width">
  25.  
  26.                 <h2 class="page-title page-title-full"><?php the_title(); ?></h2>
  27.                 <?php load_template( get_template_directory() . '/includes/loop.php' ); ?>
  28.            
  29.             </li>
  30.         </ul>
  31.  
  32.     <!-- END .section -->
  33.     </div>
  34.  
  35. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement