2018-02-05 02:05:26 -05:00
|
|
|
<?php
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access pages directly.
|
2018-07-02 04:39:41 -04:00
|
|
|
|
|
|
|
add_shortcode( 'event-calendar', 'mep_event_calender' );
|
|
|
|
function mep_event_calender($atts, $content=null){
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="event-calendar"></div>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
jQuery(document).ready( function() {
|
|
|
|
const myEvents = [
|
|
|
|
<?php
|
|
|
|
$args_search_qqq = array (
|
|
|
|
'post_type' => array( 'mep_events' ),
|
|
|
|
'posts_per_page' => -1
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
$loop = new WP_Query($args_search_qqq);
|
|
|
|
$i = 1;
|
|
|
|
$count = $loop->post_count-1;
|
|
|
|
|
|
|
|
while ($loop->have_posts()) {
|
|
|
|
$loop->the_post();
|
|
|
|
$event_meta = get_post_custom(get_the_id());
|
|
|
|
$author_terms = get_the_terms(get_the_id(), 'mep_org');
|
|
|
|
$time = strtotime($event_meta['mep_event_start_date'][0]);
|
|
|
|
$newformat = date('Y-m-d H:i:s',$time);
|
|
|
|
|
|
|
|
// echo $newformat;
|
|
|
|
if(time() < strtotime($newformat)){
|
|
|
|
?>
|
|
|
|
{
|
|
|
|
start: '<?php echo date('Y-m-d H:i',strtotime($event_meta['mep_event_start_date'][0])); ?>',
|
|
|
|
end: '<?php echo date('Y-m-d H:i',strtotime($event_meta['mep_event_end_date'][0])); ?>',
|
|
|
|
title: '<?php the_title(); ?>',
|
|
|
|
url: '<?php the_permalink(); ?>',
|
|
|
|
class: '',
|
|
|
|
color: '#000',
|
|
|
|
data: {}
|
|
|
|
},<?php //if ($i == $count) { echo "";}else{ echo ","; } ?><?php $i++; } } ?>]
|
|
|
|
|
|
|
|
jQuery('.event-calendar').equinox({
|
|
|
|
events: myEvents
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-02-05 02:05:26 -05:00
|
|
|
add_shortcode( 'event-list', 'mep_event_list' );
|
|
|
|
function mep_event_list($atts, $content=null){
|
|
|
|
$defaults = array(
|
|
|
|
"cat" => "0",
|
2018-07-02 04:39:41 -04:00
|
|
|
"org" => "0",
|
|
|
|
"style" => "grid",
|
|
|
|
"cat-filter" => "no",
|
|
|
|
"org-filter" => "no",
|
|
|
|
"show" => "-1",
|
|
|
|
"pagination" => "no",
|
2018-09-18 04:18:33 -04:00
|
|
|
'sort' => 'ASC'
|
2018-02-05 02:05:26 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
$params = shortcode_atts($defaults, $atts);
|
|
|
|
$cat = $params['cat'];
|
2018-07-02 04:39:41 -04:00
|
|
|
$org = $params['org'];
|
|
|
|
$style = $params['style'];
|
|
|
|
$cat_f = $params['cat-filter'];
|
|
|
|
$org_f = $params['org-filter'];
|
|
|
|
$show = $params['show'];
|
|
|
|
$pagination = $params['pagination'];
|
2018-09-18 04:18:33 -04:00
|
|
|
$sort = $params['sort'];
|
2018-02-05 02:05:26 -05:00
|
|
|
ob_start();
|
|
|
|
?>
|
|
|
|
<div class='mep_event_list'>
|
2018-07-02 04:39:41 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php if($cat_f=='yes'){ ?>
|
|
|
|
<div class="mep-events-cats-list">
|
|
|
|
<?php
|
|
|
|
$terms = get_terms( array(
|
|
|
|
'taxonomy' => 'mep_cat'
|
|
|
|
) );
|
|
|
|
?>
|
|
|
|
<div class="mep-event-cat-controls">
|
2018-10-31 05:47:54 -04:00
|
|
|
<button type="button" class="mep-cat-control" data-filter="all"><?php _e('All','mage-eventpress'); ?></button><?php
|
2018-07-02 04:39:41 -04:00
|
|
|
foreach ($terms as $_terms) {
|
|
|
|
?><button type="button" class="mep-cat-control" data-filter=".<?php echo $_terms->slug; ?>"><?php echo $_terms->name; ?></button><?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php } if($org_f=='yes'){ ?>
|
|
|
|
<div class="mep-events-cats-list">
|
|
|
|
<?php
|
|
|
|
$terms = get_terms( array(
|
|
|
|
'taxonomy' => 'mep_org'
|
|
|
|
) );
|
|
|
|
?>
|
|
|
|
<div class="mep-event-cat-controls">
|
2018-10-31 05:47:54 -04:00
|
|
|
<button type="button" class="mep-cat-control" data-filter="all"><?php _e('All','mage-eventpress'); ?></button><?php
|
2018-07-02 04:39:41 -04:00
|
|
|
foreach ($terms as $_terms) {
|
|
|
|
?><button type="button" class="mep-cat-control" data-filter=".<?php echo $_terms->slug; ?>"><?php echo $_terms->name; ?></button><?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<div class="mep_event_list_sec">
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-02-05 02:05:26 -05:00
|
|
|
<?php
|
2018-07-02 04:39:41 -04:00
|
|
|
$paged = get_query_var("paged")?get_query_var("paged"):1;
|
2018-02-05 02:05:26 -05:00
|
|
|
if($cat>0){
|
|
|
|
$args_search_qqq = array (
|
|
|
|
'post_type' => array( 'mep_events' ),
|
2018-07-02 04:39:41 -04:00
|
|
|
'paged' => $paged,
|
|
|
|
'posts_per_page' => $show,
|
2018-09-18 04:18:33 -04:00
|
|
|
'order' => $sort,
|
|
|
|
'orderby' => 'meta_value',
|
|
|
|
'meta_key' => 'mep_event_start_date',
|
2018-02-05 02:05:26 -05:00
|
|
|
'tax_query' => array(
|
|
|
|
array(
|
|
|
|
'taxonomy' => 'mep_cat',
|
|
|
|
'field' => 'term_id',
|
|
|
|
'terms' => $cat
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
);
|
2018-07-02 04:39:41 -04:00
|
|
|
}
|
|
|
|
elseif($org>0){
|
2018-02-05 02:05:26 -05:00
|
|
|
$args_search_qqq = array (
|
|
|
|
'post_type' => array( 'mep_events' ),
|
2018-07-02 04:39:41 -04:00
|
|
|
'posts_per_page' => $show,
|
|
|
|
'paged' => $paged,
|
2018-09-18 04:18:33 -04:00
|
|
|
'order' => $sort,
|
|
|
|
'orderby' => 'meta_value',
|
|
|
|
'meta_key' => 'mep_event_start_date',
|
2018-07-02 04:39:41 -04:00
|
|
|
'tax_query' => array(
|
|
|
|
array(
|
|
|
|
'taxonomy' => 'mep_org',
|
|
|
|
'field' => 'term_id',
|
|
|
|
'terms' => $org
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
$args_search_qqq = array (
|
2018-09-18 04:18:33 -04:00
|
|
|
'post_type' => array( 'mep_events' ),
|
2018-07-02 04:39:41 -04:00
|
|
|
'paged' => $paged,
|
2018-09-18 04:18:33 -04:00
|
|
|
'posts_per_page' => $show,
|
|
|
|
'order' => $sort,
|
|
|
|
'orderby' => 'meta_value',
|
|
|
|
'meta_key' => 'mep_event_start_date'
|
2018-02-05 02:05:26 -05:00
|
|
|
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$loop = new WP_Query( $args_search_qqq );
|
|
|
|
while ($loop->have_posts()) {
|
|
|
|
$loop->the_post();
|
|
|
|
$event_meta = get_post_custom(get_the_id());
|
2018-07-02 04:39:41 -04:00
|
|
|
$author_terms = get_the_terms(get_the_id(), 'mep_org');
|
2018-02-05 02:05:26 -05:00
|
|
|
$time = strtotime($event_meta['mep_event_start_date'][0]);
|
|
|
|
$newformat = date('Y-m-d H:i:s',$time);
|
|
|
|
|
|
|
|
|
|
|
|
if(time() < strtotime($newformat)){
|
2018-08-16 08:19:34 -04:00
|
|
|
$tt = get_the_terms( get_the_id(), 'mep_cat');
|
|
|
|
$torg = get_the_terms( get_the_id(), 'mep_org');
|
2018-07-02 04:39:41 -04:00
|
|
|
// print_r($tt);
|
|
|
|
|
|
|
|
|
2018-10-31 05:30:00 -04:00
|
|
|
?>
|
|
|
|
<div class='mep_event_<?php echo $style; ?>_item mix <?php echo $tt[0]->slug; ?> <?php echo $torg[0]->slug; ?>'>
|
|
|
|
<div class="mep_list_thumb">
|
|
|
|
<?php the_post_thumbnail('full'); ?>
|
|
|
|
<div class="mep-ev-start-date">
|
|
|
|
<div class="mep-day"><?php echo date('d', strtotime($event_meta['mep_event_start_date'][0])); ?></div>
|
|
|
|
<div class="mep-month"><?php echo date('M', strtotime($event_meta['mep_event_start_date'][0])); ?></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="mep_list_event_details"><a href="<?php the_permalink(); ?>">
|
|
|
|
<div class="mep-list-header">
|
|
|
|
<h2 class='mep_list_title'><?php the_title(); ?></h2>
|
2018-10-31 05:47:54 -04:00
|
|
|
<h3 class='mep_list_date'> <?php _e('Price Start from:','mage-eventpress'); ?> <?php echo mep_event_list_price(get_the_id()); ?><!-- <i class="fa fa-calendar"></i> <?php echo date('h:i A', strtotime($event_meta['mep_event_start_date'][0])); ?> - <?php echo $event_meta['mep_event_end_date'][0]; ?> --></h3>
|
2018-10-31 05:30:00 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
if($style=='list'){
|
|
|
|
?>
|
|
|
|
<div class="mep-event-excerpt">
|
|
|
|
<?php the_excerpt(); ?>
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<div class="mep-list-footer">
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<div class="evl-ico"><i class="fa fa-university"></i> </div>
|
|
|
|
<div class="evl-cc">
|
2018-10-31 05:47:54 -04:00
|
|
|
<h5><?php _e('Organized By:','mage-eventpress'); ?></h5>
|
2018-10-31 05:30:00 -04:00
|
|
|
<h6><?php echo $author_terms[0]->name; ?></h6>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<div class="evl-ico"><i class="fa fa-map-marker"></i> </div>
|
|
|
|
<div class="evl-cc">
|
2018-10-31 05:47:54 -04:00
|
|
|
<h5><?php _e('Location:','mage-eventpress'); ?></h5>
|
2018-10-31 05:30:00 -04:00
|
|
|
<h6><?php echo $event_meta['mep_city'][0]; ?></h6>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<div class="evl-ico"><i class="fa fa-calendar"></i> </div>
|
|
|
|
<div class="evl-cc">
|
2018-10-31 05:47:54 -04:00
|
|
|
<h5><?php _e('Time:','mage-eventpress'); ?></h5>
|
2018-10-31 05:30:00 -04:00
|
|
|
<h6><?php echo date('h:i A', strtotime($event_meta['mep_event_start_date'][0])); ?> - <?php echo date('h:i A', strtotime($event_meta['mep_event_end_date'][0])); ?></h6>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div></a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if($pagination=='yes'){
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12"><?php
|
|
|
|
$pargs = array(
|
|
|
|
"current"=>$paged,
|
|
|
|
"total"=>$loop->max_num_pages
|
|
|
|
);
|
|
|
|
echo "<div class='pagination-sec'>".paginate_links($pargs)."</div>";
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
jQuery(document).ready( function() {
|
|
|
|
var containerEl = document.querySelector('.mep_event_list_sec');
|
|
|
|
var mixer = mixitup(containerEl);
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<?php
|
|
|
|
$content = ob_get_clean();
|
|
|
|
return $content;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
add_shortcode( 'expire-event-list', 'mep_expire_event_list' );
|
|
|
|
function mep_expire_event_list($atts, $content=null){
|
|
|
|
$defaults = array(
|
|
|
|
"cat" => "0",
|
|
|
|
"org" => "0",
|
|
|
|
"style" => "grid",
|
|
|
|
"cat-filter" => "no",
|
|
|
|
"org-filter" => "no",
|
|
|
|
"show" => "-1",
|
|
|
|
"pagination" => "no",
|
|
|
|
'sort' => 'ASC'
|
|
|
|
);
|
|
|
|
|
|
|
|
$params = shortcode_atts($defaults, $atts);
|
|
|
|
$cat = $params['cat'];
|
|
|
|
$org = $params['org'];
|
|
|
|
$style = $params['style'];
|
|
|
|
$cat_f = $params['cat-filter'];
|
|
|
|
$org_f = $params['org-filter'];
|
|
|
|
$show = $params['show'];
|
|
|
|
$pagination = $params['pagination'];
|
|
|
|
$sort = $params['sort'];
|
|
|
|
ob_start();
|
|
|
|
?>
|
|
|
|
<div class='mep_event_list'>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php if($cat_f=='yes'){ ?>
|
|
|
|
<div class="mep-events-cats-list">
|
|
|
|
<?php
|
|
|
|
$terms = get_terms( array(
|
|
|
|
'taxonomy' => 'mep_cat'
|
|
|
|
) );
|
|
|
|
?>
|
|
|
|
<div class="mep-event-cat-controls">
|
2018-10-31 05:47:54 -04:00
|
|
|
<button type="button" class="mep-cat-control" data-filter="all"><?php _e('All','mage-eventpress'); ?></button><?php
|
2018-10-31 05:30:00 -04:00
|
|
|
foreach ($terms as $_terms) {
|
|
|
|
?><button type="button" class="mep-cat-control" data-filter=".<?php echo $_terms->slug; ?>"><?php echo $_terms->name; ?></button><?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php } if($org_f=='yes'){ ?>
|
|
|
|
<div class="mep-events-cats-list">
|
|
|
|
<?php
|
|
|
|
$terms = get_terms( array(
|
|
|
|
'taxonomy' => 'mep_org'
|
|
|
|
) );
|
|
|
|
?>
|
|
|
|
<div class="mep-event-cat-controls">
|
2018-10-31 05:47:54 -04:00
|
|
|
<button type="button" class="mep-cat-control" data-filter="all"><?php _e('All','mage-eventpress'); ?></button><?php
|
2018-10-31 05:30:00 -04:00
|
|
|
foreach ($terms as $_terms) {
|
|
|
|
?><button type="button" class="mep-cat-control" data-filter=".<?php echo $_terms->slug; ?>"><?php echo $_terms->name; ?></button><?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<div class="mep_event_list_sec">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php
|
|
|
|
$paged = get_query_var("paged")?get_query_var("paged"):1;
|
|
|
|
if($cat>0){
|
|
|
|
$args_search_qqq = array (
|
|
|
|
'post_type' => array( 'mep_events' ),
|
|
|
|
'paged' => $paged,
|
|
|
|
'posts_per_page' => $show,
|
|
|
|
'order' => $sort,
|
|
|
|
'orderby' => 'meta_value',
|
|
|
|
'meta_key' => 'mep_event_start_date',
|
|
|
|
'tax_query' => array(
|
|
|
|
array(
|
|
|
|
'taxonomy' => 'mep_cat',
|
|
|
|
'field' => 'term_id',
|
|
|
|
'terms' => $cat
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
);
|
|
|
|
}
|
|
|
|
elseif($org>0){
|
|
|
|
$args_search_qqq = array (
|
|
|
|
'post_type' => array( 'mep_events' ),
|
|
|
|
'posts_per_page' => $show,
|
|
|
|
'paged' => $paged,
|
|
|
|
'order' => $sort,
|
|
|
|
'orderby' => 'meta_value',
|
|
|
|
'meta_key' => 'mep_event_start_date',
|
|
|
|
'tax_query' => array(
|
|
|
|
array(
|
|
|
|
'taxonomy' => 'mep_org',
|
|
|
|
'field' => 'term_id',
|
|
|
|
'terms' => $org
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
$args_search_qqq = array (
|
|
|
|
'post_type' => array( 'mep_events' ),
|
|
|
|
'paged' => $paged,
|
|
|
|
'posts_per_page' => $show,
|
|
|
|
'order' => $sort,
|
|
|
|
'orderby' => 'meta_value',
|
|
|
|
'meta_key' => 'mep_event_start_date'
|
|
|
|
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$loop = new WP_Query( $args_search_qqq );
|
|
|
|
while ($loop->have_posts()) {
|
|
|
|
$loop->the_post();
|
|
|
|
$event_meta = get_post_custom(get_the_id());
|
|
|
|
$author_terms = get_the_terms(get_the_id(), 'mep_org');
|
|
|
|
$time = strtotime($event_meta['mep_event_start_date'][0]);
|
|
|
|
$newformat = date('Y-m-d H:i:s',$time);
|
|
|
|
|
|
|
|
|
|
|
|
if(time() > strtotime($newformat)){
|
|
|
|
$tt = get_the_terms( get_the_id(), 'mep_cat');
|
|
|
|
$torg = get_the_terms( get_the_id(), 'mep_org');
|
|
|
|
// print_r($tt);
|
|
|
|
|
|
|
|
|
2018-02-05 02:05:26 -05:00
|
|
|
?>
|
2018-07-02 04:39:41 -04:00
|
|
|
<div class='mep_event_<?php echo $style; ?>_item mix <?php echo $tt[0]->slug; ?> <?php echo $torg[0]->slug; ?>'>
|
|
|
|
<div class="mep_list_thumb">
|
|
|
|
<?php the_post_thumbnail('full'); ?>
|
|
|
|
<div class="mep-ev-start-date">
|
2018-09-14 01:20:47 -04:00
|
|
|
<div class="mep-day"><?php echo date('d', strtotime($event_meta['mep_event_start_date'][0])); ?></div>
|
|
|
|
<div class="mep-month"><?php echo date('M', strtotime($event_meta['mep_event_start_date'][0])); ?></div>
|
2018-07-02 04:39:41 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="mep_list_event_details"><a href="<?php the_permalink(); ?>">
|
|
|
|
<div class="mep-list-header">
|
|
|
|
<h2 class='mep_list_title'><?php the_title(); ?></h2>
|
2018-09-14 01:20:47 -04:00
|
|
|
<h3 class='mep_list_date'> Price Start from: <?php echo mep_event_list_price(get_the_id()); ?><!-- <i class="fa fa-calendar"></i> <?php echo date('h:i A', strtotime($event_meta['mep_event_start_date'][0])); ?> - <?php echo $event_meta['mep_event_end_date'][0]; ?> --></h3>
|
2018-02-05 02:05:26 -05:00
|
|
|
</div>
|
2018-07-02 04:39:41 -04:00
|
|
|
|
|
|
|
<?php
|
|
|
|
if($style=='list'){
|
|
|
|
?>
|
|
|
|
<div class="mep-event-excerpt">
|
|
|
|
<?php the_excerpt(); ?>
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<div class="mep-list-footer">
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<div class="evl-ico"><i class="fa fa-university"></i> </div>
|
|
|
|
<div class="evl-cc">
|
2018-10-31 05:47:54 -04:00
|
|
|
<h5><?php _e('Organized By:','mage-eventpress'); ?></h5>
|
2018-07-02 04:39:41 -04:00
|
|
|
<h6><?php echo $author_terms[0]->name; ?></h6>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<div class="evl-ico"><i class="fa fa-map-marker"></i> </div>
|
|
|
|
<div class="evl-cc">
|
2018-10-31 05:47:54 -04:00
|
|
|
<h5><?php _e('Location:','mage-eventpress'); ?></h5>
|
2018-07-02 04:39:41 -04:00
|
|
|
<h6><?php echo $event_meta['mep_city'][0]; ?></h6>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<div class="evl-ico"><i class="fa fa-calendar"></i> </div>
|
|
|
|
<div class="evl-cc">
|
2018-10-31 05:47:54 -04:00
|
|
|
<h5><?php _e('Time:','mage-eventpress'); ?></h5>
|
2018-09-14 01:20:47 -04:00
|
|
|
<h6><?php echo date('h:i A', strtotime($event_meta['mep_event_start_date'][0])); ?> - <?php echo date('h:i A', strtotime($event_meta['mep_event_end_date'][0])); ?></h6>
|
2018-07-02 04:39:41 -04:00
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div></a>
|
2018-02-05 02:05:26 -05:00
|
|
|
</div>
|
2018-07-02 04:39:41 -04:00
|
|
|
</div>
|
2018-02-05 02:05:26 -05:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
}
|
2018-07-02 04:39:41 -04:00
|
|
|
if($pagination=='yes'){
|
2018-02-05 02:05:26 -05:00
|
|
|
?>
|
2018-07-02 04:39:41 -04:00
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12"><?php
|
|
|
|
$pargs = array(
|
|
|
|
"current"=>$paged,
|
|
|
|
"total"=>$loop->max_num_pages
|
|
|
|
);
|
|
|
|
echo "<div class='pagination-sec'>".paginate_links($pargs)."</div>";
|
|
|
|
?>
|
|
|
|
</div>
|
2018-02-05 02:05:26 -05:00
|
|
|
</div>
|
2018-07-02 04:39:41 -04:00
|
|
|
<?php } ?>
|
|
|
|
|
2018-02-05 02:05:26 -05:00
|
|
|
|
2018-07-02 04:39:41 -04:00
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-08-10 12:12:04 -04:00
|
|
|
<script>
|
|
|
|
jQuery(document).ready( function() {
|
|
|
|
var containerEl = document.querySelector('.mep_event_list_sec');
|
|
|
|
var mixer = mixitup(containerEl);
|
|
|
|
});
|
|
|
|
</script>
|
2018-02-05 02:05:26 -05:00
|
|
|
<?php
|
|
|
|
$content = ob_get_clean();
|
|
|
|
return $content;
|
|
|
|
}
|