Query Donation List Based On Amount
-
Hi,
Im trying to re-order the donation list based on amount from highest to lowest donation.
Can anyone help me with this ?
Thanks$atts = shortcode_atts( array( 'number' => 30, 'form_id' => 130443, 'heading' => '', ), $atts, 'my_donor_list' ); $args = array( 'output' => 'payments', 'number' => $atts['number'], 'status' => 'publish', 'give_forms' => $atts['form_id'], ); $payments = new Give_Payments_Query( $args ); $payments = $payments->get_payments();
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘Query Donation List Based On Amount’ is closed to new replies.