mage-eventpress/templates/single/daywise_details.php

13 lines
382 B
PHP
Raw Normal View History

2020-07-12 06:42:13 -04:00
<div class="mep-day-details-section">
2020-12-20 06:37:12 -05:00
<h4><?php _e('Event Timelines', 'mage-eventpress'); ?></h4>
2020-07-12 06:42:13 -04:00
<?php
foreach ($mep_event_day as $field) {
?>
<div class="mep-day-title"><?php echo $field['mep_day_title']; ?></div>
<div class="mep-day-details">
<p><?php echo $field['mep_day_content']; ?></p>
</div>
<?php
}
?>
</div>