/
home
/
faureele
/
extra-til
/
wp-content
/
themes
/
woffice
/
Upload File
HOME
<?php /** * The Template for displaying single event */ // UPDATE POST global $post; $edit_allowed = Woffice_Frontend::edit_allowed('woffice-event') == true; if ($edit_allowed) { $process_result = Woffice_Frontend::frontend_process('woffice-event', $post->ID); } get_header(); ?> <?php // Start the Loop. while ( have_posts() ) : the_post(); ?> <div id="left-content"> <?php //GET THEME HEADER CONTENT woffice_title(get_the_title()); ?> <!-- START THE CONTENT CONTAINER --> <div id="content-container"> <!-- START CONTENT --> <div id="content"> <?php get_template_part( 'template-parts/content', 'single-event' ); ?> <?php // If comments are open or we have at least one comment, load up the comment template. if ( comments_open() || get_comments_number() ) { comments_template(); } ?> </div> </div><!-- END #content-container --> <?php woffice_scroll_top(); ?> </div><!-- END #left-content --> <?php // END THE LOOP endwhile; ?> <?php get_footer();