Don't like ads? PRO users don't see any ads ;-)
Guest

single-events.php

By: keihead on Dec 20th, 2012  |  syntax: None  |  size: 0.50 KB  |  hits: 40  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php get_header(); ?>
  2.        
  3. <div id="container" class="clearfix">
  4.         <div id="content-wrap">
  5.         <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  6.                 <div id="left-content">
  7.                 <h1 class="heading2">EVENTS</h1>
  8.          
  9.                         <?php echo get_event_details(true, false); ?>
  10.                          
  11.                         <?php the_post_thumbnail( 'full' ); ?>
  12.                                  <?php  get_the_content(); ?>
  13.                                  
  14.                 </div> 
  15.                
  16.                 <div id="right-content">
  17.                         <?php get_sidebar(); ?>
  18.                 </div>
  19.         </div>
  20. </div>
  21. <?php endwhile; endif; ?>
  22. <?php get_footer(); ?>