You appear to be a bot. Output may be restricted
Description
Retrieves the transaction ID for the given payment
Usage
$string = edd_get_payment_transaction_id( $payment_id );
Parameters
- $payment_id
- ( int ) optional – Payment ID
Returns
string The Transaction ID
Source
File name: easy-digital-downloads/includes/payments/functions.php
Lines:
1 to 4 of 4
function edd_get_payment_transaction_id( $payment_id = 0 ) { $payment = new EDD_Payment( $payment_id ); return $payment->transaction_id; }