%PDF- %PDF-
Direktori : /var/www/html/ceaa/wp-content/themes/eduma/inc/widgets/list-event/tpl/ |
Current File : /var/www/html/ceaa/wp-content/themes/eduma/inc/widgets/list-event/tpl/slider.php |
<?php $number_posts = $instance['number_posts'] ? $instance['number_posts'] : 10; $link = get_post_type_archive_link( 'tp_event' ); $list_status = $instance['status'] ? $instance['status'] : array( 'happening', 'upcoming' ); $list_cat = $instance['cat_id'] ? $instance['cat_id'] : array(); if( version_compare(WPEMS_VER, '2.1.5', '>=') ) { $query_args = array( 'post_type' => 'tp_event', 'posts_per_page' => - 1, 'meta_query' => array( array( 'key' => 'tp_event_status', 'value' => $list_status, 'compare' => 'IN', ), ), 'ignore_sticky_posts' => true ); } else { $query_args = array( 'post_type' => 'tp_event', 'posts_per_page' => - 1, 'post_status' => $list_status, 'ignore_sticky_posts' => true ); } if( $list_cat && $list_cat != 'all' ) { $query_args['tax_query'] = array( array( 'taxonomy' => 'tp_event_category', 'field' => 'term_id', 'terms' => $list_cat ), ); } $events = new WP_Query( $query_args ); $html = array(); $sorting = array(); $pagination = false; $item_visible = 1; if ( $events->have_posts() ) { echo '<div class="list-event-slider">'; if ( $instance['title'] ) { echo ent2ncr( $args['before_title'] . $instance['title'] . $args['after_title'] ); } //echo '<div class="thim-event-carousel thim-carousel-wrapper ' . $instance['layout'] . '" data-visible="' . esc_attr( $item_visible ) . '" data-pagination="' . esc_attr( $pagination ) . '">'; echo '<div class="thim-event-simple-slider ' . $instance['layout'] . '" data-visible="' . esc_attr( $item_visible ) . '" data-pagination="' . esc_attr( $pagination ) . '">'; while ( $events->have_posts() ) { $events->the_post(); $class = 'item-event'; $time_format = get_option( 'time_format' ); if ( class_exists( 'WPEMS' ) ) { $time_from = wpems_event_start( get_option('time_format') ); $time_end = wpems_event_end( get_option('time_format') ); $location = wpems_event_location(); $date_show = wpems_get_time( 'd' ); $month_show = wpems_get_time( 'M' ); $sorting[get_the_ID()] = strtotime( wpems_get_time() ); } else { $time_end = tp_event_end( get_option('time_format') ); $time_end = tp_event_end( get_option('time_format') ); $location = tp_event_location(); $date_show = tp_event_get_time( 'd' ); $month_show = tp_event_get_time( 'M' ); $sorting[get_the_ID()] = strtotime( tp_event_get_time() ); } ob_start(); ?> <div <?php post_class( $class ); ?>> <div class="image"> <?php echo get_the_post_thumbnail( get_the_ID(), 'full' ); ?> </div> <div class="event-wrapper"> <div class="box-time"> <div class="time-from"> <div class="date"> <?php echo esc_html( $date_show ); ?> </div> <div class="month"> <?php echo esc_html( $month_show ); ?> </div> </div> </div> <h5 class="title"> <a href="<?php echo esc_url( get_permalink( get_the_ID() ) ); ?>"> <?php echo get_the_title(); ?></a> </h5> <div class="desc"> <?php echo thim_excerpt(15); ?> </div> <a class="read-more" href="<?php echo esc_url( get_permalink( get_the_ID() ) ); ?>"><?php esc_html_e( 'Read More', 'eduma' ); ?> <i class="fa fa-long-arrow-right"></i> </a> </div> </div> <?php $html[get_the_ID()] = ob_get_contents(); ob_end_clean(); } asort( $sorting ); if ( !empty( $sorting ) ) { $index = 1; foreach ( $sorting as $key => $value ) { if ( $index > $number_posts ) { break; } if ( $html[$key] ) { echo ent2ncr( $html[$key] ); } $index ++; } } echo '</div>'; if ( $instance['text_link'] != '' ) { echo '<a class="view-all" href="' . esc_url( $link ) . '">' . $instance['text_link'] . '</a>'; } echo '</div>'; //End div list-event-slider } wp_reset_postdata(); ?>