Hi, im using the following to create a kind of time table, bascially i have a custom write panel, with a group 'When' cotaining a time slot am or pm, a site (site 1 or site 2) and the day on whcih the course is held.
At the moment I have this loop repeated for each day, was just wondering if thyer is way of cleaning it up a bit so as to not have it 7 time on the template.
<h3>Tuesday</h3>
<?php while (have_posts()) : the_post(); ?>
<?php $myEvent = get_group('When'); // use the Custom Group name
foreach($myEvent as $event){ ?>
<?php if($event['whichDays'][1] == 'Tues') { ?>
<p><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a> | <?php echo $event['site'][1] ?></p>
<?php } ?>
<?php } ?>
<?php endwhile; ?>
<br />