~gbancroft-canonical/juju-website/homepage-realignment

1
2
3
4
5
6
7
8
9
10
11
<?php
$args = array('numberposts' => 3, 'category' => 4);
$posts = get_posts($args);
foreach ($posts as $post): ?>
	<li>
		<a href="<?php the_permalink(); ?>"><?php the_title(); ?> &rsaquo;</a>
		<span class="location"><?php echo get_post_meta($post->ID, 'location', true); ?></span>	
		<time datetime="<?php echo date('Y-m-d', strtotime(str_replace(',', '', get_post_meta($post->ID, 'date-start', true)))); ?>"><?php echo get_post_meta($post->ID, 'date-start', true); ?> &ndash; <?php echo get_post_meta($post->ID, 'date-end', true); ?></time>
	</li>
<?php endforeach; ?>
<li><a href="/?cat=4&amp;feed=rss2"><div class="rss">All upcoming events&nbsp;&rsaquo;</div></a></li>