[donation_review]
// Dashboard widget to display donation data function donation_dashboard_widget() { global $wpdb; $table_name = $wpdb->prefix . ‘donations’; $donations = $wpdb->get_results(“SELECT * FROM $table_name”); echo ‘Donation Data
‘; echo ‘ID | Amount | Donor Name | Comment | Invoice Number | Invoice Date | Deposited Account | Cash Received Account | |
---|---|---|---|---|---|---|---|---|
$donation->id | $donation->amount | $donation->donor_name | $donation->email | $donation->comment | $donation->invoice_number | $donation->invoice_date | $donation->deposited_account | $donation->cash_received_account |