mage-eventpress/templates/single/daywise_details.php

13 lines
441 B
PHP
Raw Normal View History

2020-07-12 06:42:13 -04:00
<div class="mep-day-details-section">
2021-10-31 07:01:04 -04:00
<h4><?php esc_html_e('Event Timelines', 'mage-eventpress'); ?></h4>
2020-07-12 06:42:13 -04:00
<?php
foreach ($mep_event_day as $field) {
?>
2021-10-31 07:01:04 -04:00
<div class="mep-day-title"><?php echo esc_html($field['mep_day_title']); ?></div>
2020-07-12 06:42:13 -04:00
<div class="mep-day-details">
2021-11-12 01:49:30 -05:00
<p><?php echo mep_esc_html(html_entity_decode(nl2br($field['mep_day_content']))); ?></p>
2020-07-12 06:42:13 -04:00
</div>
<?php
}
?>
</div>