uawdijnntqw1x1x1
IP : 216.73.216.109
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
public_html
/
.
/
.
/
wp-content
/
plugins
/
.
/
charitable
/
templates
/
donation-stats.php
/
/
<?php /** * Display the site donation stats. * * Override this template by copying it to yourtheme/charitable/donation-stats.php * * @package Charitable/Templates/Widgets * @author WP Charitable LLC * @since 1.5.0 * @version 1.6.57 */ /** * Do something before displaying the donation stats. * * @since 1.6.57 * * @param array $view_args The view arguments. */ do_action( 'charitable_donation_stats_before', $view_args ); $campaigns_count = Charitable_Campaigns::query( array( 'posts_per_page' => -1, 'fields' => 'ids', ) )->found_posts; $campaigns_text = 1 === $campaigns_count ? __( 'Campaign', 'charitable' ) : __( 'Campaigns', 'charitable' ); /** * Filter the donation stats to show. * * @since 1.5.0 * * @param array $donation_stats The default stats to show. * @param array $view_args All arguments passed to the view. */ $donation_stats = apply_filters( 'charitable_donation_stats', array( 'campaign_count' => array( 'amount' => $campaigns_count, 'description' => $campaigns_text, ), 'donated' => array( 'amount' => charitable_format_money( charitable_get_table( 'campaign_donations' )->get_total() ), 'description' => __( 'Donated', 'charitable' ), ), 'donor_count' => array( 'amount' => charitable_get_table( 'donors' )->count_donors_with_donations(), 'description' => __( 'Donors', 'charitable' ), ), ), $view_args ); ?> <ul class="donation-stats"> <?php foreach ( $donation_stats as $stat ) : printf( '<li><span class="figure">%s</span> %s</li>', esc_html( $stat['amount'] ), esc_html( $stat['description'] ) ); endforeach; ?> </ul><!-- .donation-stats --> <?php /** * Do something after displaying the donation stats. * * @since 1.6.57 * * @param array $view_args The view arguments. */ do_action( 'charitable_donation_stats_after', $view_args );
/home/batcwwjx/public_html/././wp-content/plugins/./charitable/templates/donation-stats.php