Your IP : 216.73.216.168
<?php
extract( $args );
extract( $instance );
$title = apply_filters('widget_title', $instance['title']);
if ( $title ) {
echo wp_kses_post($before_title) . trim( $title ) . $after_title;
}
$loop = crowdngo_get_events(array('limit' => $number_post, 'event_type' => $event_type));
if ($loop->have_posts()):
?>
<div class="donation-widget donation-widget-event widget-content">
<div class="slick-carousel" data-carousel="slick" data-items="1" data-smallmedium="1" data-extrasmall="1" data-pagination="true" data-nav="false" data-rows="1" data-autoplay="false">
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<?php get_template_part( 'templates-event/loop/inner-special' ); ?>
<?php endwhile; ?>
</div>
</div>
<?php endif; ?>