Skip to content

Instantly share code, notes, and snippets.

@yusn
Forked from dcooney/event.php
Created February 10, 2017 06:29
Show Gist options
  • Select an option

  • Save yusn/3f0d4652a86a1b003bb20f092318cd4b to your computer and use it in GitHub Desktop.

Select an option

Save yusn/3f0d4652a86a1b003bb20f092318cd4b to your computer and use it in GitHub Desktop.
Event Listing Template
<li>
<?php if (has_post_thumbnail()) {
the_post_thumbnail(array(150,150));
}?>
<h3><a href="#"><?php the_title(); ?></a></h3>
<?php
$start_date = date("F j, Y", strtotime(get_field('start_date')));
$end_date = date("F j, Y", strtotime(get_field('end_date')));
?>
<p class="entry-meta">
<?php echo $start_date; ?>
<?php if($end_date) echo ' - ' .$end_date; ?>
<?php if(get_field('event_time')) echo ' @ ' .get_field('event_time'); ?>
</p>
<?php the_excerpt(); ?>
</li>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment