Advertisement
BakerMan

Woo Biznizz Events Calendar Single Template

Sep 5th, 2012
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.03 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.         <?php the_post(); global $post; ?>
  9.         <div <?php post_class(); ?>>
  10.             <?php tribe_events_before_html() ?>
  11.  
  12.             <h1 class="title"><?php the_title(); ?></h1>
  13.  
  14.             <div class="entry">
  15.  
  16.                 <?php include(tribe_get_current_template()) ?>
  17.                 <?php edit_post_link(__('Edit','tribe-events-calendar'), '<span class="edit-link">', '</span>'); ?>
  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 if(tribe_get_option('showComments','no') == 'yes'){ comments_template();} ?>
  27.  
  28.     </div><!-- /#main -->
  29.  
  30. </div><!-- /#content -->
  31.  
  32. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement