mage-eventpress/inc/template-prts/faq.php

33 lines
1.1 KiB
PHP
Raw Normal View History

2020-01-22 07:15:24 -05:00
<?php
2020-05-24 04:17:41 -04:00
if (!defined('ABSPATH')) {
die;
} // Cannot access pages directly.
2020-01-22 07:15:24 -05:00
add_action('mep_event_faq', 'mep_faq_part');
2020-05-24 04:17:41 -04:00
if (!function_exists('mep_faq_part')) {
function mep_faq_part($event_id)
{
ob_start();
$mep_event_faq = get_post_meta($event_id, 'mep_event_faq', true) ? get_post_meta($event_id, 'mep_event_faq', true) : '';
if ($mep_event_faq) {
?>
<div class="mep-event-faq-part">
<h3 class="ex-sec-title"><?php _e('Event F.A.Q', 'mage-eventpress'); ?></h3>
<div id='mep-event-accordion' class="">
<?php
foreach ($mep_event_faq as $field) {
2020-01-22 07:15:24 -05:00
?>
2020-05-24 04:17:41 -04:00
<h3><?php if ($field['mep_faq_title'] != '') echo esc_attr($field['mep_faq_title']); ?></h3>
<p><?php if ($field['mep_faq_content'] != '') echo esc_attr($field['mep_faq_content']); ?></p>
2020-01-22 07:15:24 -05:00
<?php
2020-05-24 04:17:41 -04:00
}
?>
</div>
2020-01-22 07:15:24 -05:00
</div>
2020-05-24 04:17:41 -04:00
<?php
}
$content = ob_get_clean();
echo apply_filters('mage_event_faq_list', $content, $event_id);
}
2020-01-22 07:15:24 -05:00
}