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_give_get_donations($type, $number_post);
if ($loop->have_posts()):
?>
<div class="donation-widget widget-content">
<div class="style-grid">
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<?php get_template_part( 'give/loop/list-small' ); ?>
<?php endwhile; ?>
</div>
</div>
<?php endif; ?>