mage-eventpress/templates/single/daywise_details.php

20 lines
649 B
PHP
Raw Normal View History

2020-07-12 06:42:13 -04:00
<div class="mep-day-details-section">
2022-04-12 01:00:35 -04:00
<h4><?php esc_html_e('Event Timelines', 'mage-eventpress'); ?></h4>
2020-07-12 06:42:13 -04:00
<?php
2022-04-12 01:00:35 -04:00
$i = 1;
foreach ($mep_event_day as $field):
2020-07-12 06:42:13 -04:00
?>
2022-04-12 01:00:35 -04:00
<div class="mep-day-details-item">
<div class="mep-day-icon"><?php echo $i; ?></div>
<div class="mep-day-content">
<div class="mep-day-title"><?php echo esc_html($field['mep_day_title']); ?></div>
<div class="mep-day-details">
<?php echo mep_esc_html(html_entity_decode(nl2br($field['mep_day_content']))); ?>
</div>
2020-07-12 06:42:13 -04:00
</div>
2022-04-12 01:00:35 -04:00
</div>
2020-07-12 06:42:13 -04:00
<?php
2022-04-12 01:00:35 -04:00
$i++;
endforeach;
2020-07-12 06:42:13 -04:00
?>
</div>