Get wallets sum
-
Hi,
I need to know total money on wallets.
I use :
<?php
$users = get_users( $args );
$sum=0;
foreach ( $users as $user ) {
$wallet=get_user_meta($user->id,’_current_woo_wallet_balance’);
$sum+=$wallet[0];
}
echo ” Total : $sum <br /><br />”;
?>
Is there another way ?
Thanks
The topic ‘Get wallets sum’ is closed to new replies.