Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * Possible adaption of ecp-single-template.php to work with WooThemes Canvas.
- *
- * (The Events Calendar 2.0.11)
- *
- * @see http://tri.be/support/forums/topic/problem-with-calendar-view-and-woothemes-canvas-theme/
- * @see http://tri.be/support/documentation/events-calendar-themers-guide/
- */
- // Don't load directly
- if ( !defined('ABSPATH') ) { die('-1'); }
- ?>
- <?php get_header(); ?>
- <?php tribe_events_before_html(); ?>
- <div id="content">
- <div id="main-sidebar-container" class="tribe-events-event widecolumn">
- <div id="main">
- <?php the_post(); global $post; ?>
- <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <h2 class="entry-title"><?php the_title(); ?></h2>
- <?php include(tribe_get_current_template()); ?>
- <?php edit_post_link(__('Edit','tribe-events-calendar'), '<span class="edit-link">', '</span>'); ?>
- </div><!-- post -->
- <?php if(tribe_get_option('showComments','no') == 'yes'){ comments_template(); } ?>
- </div> <!-- #main -->
- <?php get_sidebar(); ?>
- </div> <!-- #main-sidebar-container -->
- </div> <!--#content-->
- <?php tribe_events_after_html(); ?>
- <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment