Advertisement
deliciousthemes

Haze - Page with Custom Sidebar

Dec 12th, 2012
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.24 KB | None | 0 0
  1. <?php
  2. /*
  3.  Template Name: Page with Custom Sidebar
  4. */
  5. ?>
  6.  
  7. <?php get_header(); ?>
  8.  
  9.     <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  10.  
  11.         <section class="page-title">
  12.             <div class="double-separator"></div>
  13.             <div class="breadcrumbs">
  14.                 <div class="two-third align-left">
  15.                     <?php if (function_exists('dt_breadcrumbs')) dt_breadcrumbs(); ?>
  16.                 </div>
  17.                
  18.                 <div class="one-third column-last align-right">
  19.                 <?php              
  20.                 //get meta
  21.                     $tagline = get_post_meta($post->ID, 'haze_tagline', TRUE); 
  22.                     if(!empty($tagline)) {  echo $tagline; }
  23.                 ?>                             
  24.                 </div>
  25.             </div><!--end breadcrumbs-->
  26.             <div class="double-separator"></div>
  27.         </section>
  28.     </div><!--end top-->
  29.    
  30.     <div class="centered-wrapper">
  31.  
  32.  
  33.         <aside id="sidebar">
  34.             <?php if ( !dynamic_sidebar('custom-sidebar') ) : ?>
  35.                <p><?php _e('You need to drag a widget into your custom sidebar in the WordPress Admin', 'haze'); ?></p>
  36.             <?php endif; ?>
  37.         </aside><!--end navigation-->  
  38.  
  39.         <section>
  40.             <article id="page-<?php the_ID(); ?>">
  41.                 <section>
  42.                     <?php the_content(); ?>
  43.                 </section>
  44.             </article>
  45.         </section>
  46.  
  47.        
  48.        
  49.     <?php endwhile; ?>
  50.  
  51.     <?php endif; ?>
  52.  
  53.     </div><!--end centered-wrapper-->
  54.  
  55. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement