Advertisement
BakerMan

Woo Biznizz Full-Width Event Calendar Page

Sep 4th, 2012
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.15 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <?php global $woo_options; ?>
  3.  
  4.     <div id="content" class="page col-full">
  5.         <div id="main" class="fullwidth">
  6.  
  7.             <?php if ( function_exists('yoast_breadcrumb') ) { yoast_breadcrumb('<div id="breadcrumb"><p>','</p></div>'); } ?>
  8.  
  9.             <div <?php post_class(); ?>>
  10.                 <?php tribe_events_before_html() ?>
  11.  
  12.                     <h1 class="title"><?php tribe_events_title(); ?></h1>
  13.  
  14.                     <div class="entry">
  15.  
  16.                         <?php include(tribe_get_current_template()); ?>
  17.                         <?php tribe_events_after_html() ?>
  18.  
  19.                         <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'woothemes' ), 'after' => '</div>' ) ); ?>
  20.                     </div><!-- /.entry -->
  21.  
  22.                     <?php edit_post_link( __('{ Edit }', 'woothemes'), '<span class="small">', '</span>' ); ?>
  23.  
  24.                 </div><!-- /.post -->
  25.  
  26.                 <?php $comm = $woo_options['woo_comments']; if ( ($comm == "page" || $comm == "both") ) : ?>
  27.                     <?php comments_template(); ?>
  28.                 <?php endif; ?>
  29.  
  30.         </div><!-- /#main -->
  31.  
  32.     </div><!-- /#content -->
  33.  
  34. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement