[Plugin: Event Organiser] display day of the week using eo_get_events(array
-
I can display the day of the week using – <?php eo_the_start(‘l d F Y’); ?> but when using the code below I don’t seem to be able to display the day of the week.
<?php
$events = eo_get_events(array(
‘numberposts’=>2,
‘tax_query’=>array( array(
‘taxonomy’=>’event-category’,
‘operator’ => ‘IN’,
‘field’=>’slug’,
‘terms’=>array(‘sermons’, ‘events’)
))
));if($events):
foreach ($events as $event):
$return= ‘<h2 class=”event-title”>’.eo_format_date($event->StartDate, get_option(‘date_format’)).'</h2><p>’.$event->post_title.'</p>’;
echo $return;endforeach;
endif
?>
Can anyone help?https://www.ads-software.com/extend/plugins/event-organiser/
- The topic ‘[Plugin: Event Organiser] display day of the week using eo_get_events(array’ is closed to new replies.