-
-
Save yusn/3f0d4652a86a1b003bb20f092318cd4b to your computer and use it in GitHub Desktop.
Event Listing Template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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