Files
SIGE-WEB-snapshot/ambiente-de-test/wp-content/plugins/modern-events-calendar-lite/templates/taxonomy-mec-category.php

28 lines
826 B
PHP

<?php
/** no direct access **/
defined('MECEXEC') or die();
/**
* The Template for displaying mec-category taxonomy events
*
* @author Webnus <info@webnus.biz>
* @package MEC/Templates
* @version 1.0.0
*/
get_header('mec'); ?>
<section id="<?php echo apply_filters('mec_category_page_html_id', 'main-content'); ?>" class="<?php echo apply_filters('mec_category_page_html_class', 'mec-container'); ?>">
<?php do_action('mec_before_main_content'); ?>
<?php do_action('mec_before_events_loop'); ?>
<h1><?php echo single_term_title(''); ?></h1>
<?php $MEC = MEC::instance(); echo $MEC->category(); ?>
<?php do_action('mec_after_events_loop'); ?>
</section>
<?php do_action('mec_after_main_content'); ?>
<?php get_footer('mec');