16 lines
454 B
PHP
Raw Permalink Normal View History

2020-05-24 08:17:41 +00:00
<?php
if (!defined('ABSPATH')) {
die;
} // Cannot access pages directly.
add_action('mep_event_thumbnail', 'mep_thumbnail');
if (!function_exists('mep_thumbnail')) {
function mep_thumbnail()
{
2023-07-25 02:16:45 +00:00
global $post, $event_id;
2020-05-24 08:17:41 +00:00
ob_start();
2020-07-12 10:42:13 +00:00
require(mep_template_file_path('single/thumbnail.php'));
2020-05-24 08:17:41 +00:00
$content = ob_get_clean();
echo apply_filters('mage_event_single_thumbnail', $content, $post->ID);
}
2020-07-12 10:42:13 +00:00
}