Your IP : 216.73.216.95


Current Path : /var/test/www/html/37thanniversary/wp-content/themes/crowdngo/widgets/
Upload File :
Current File : /var/test/www/html/37thanniversary/wp-content/themes/crowdngo/widgets/donations.php

<?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; ?>