You appear to be a bot. Output may be restricted
Description
Get the gateway associated with a payment
Usage
$string = edd_get_payment_gateway( $payment_id );
Parameters
- $payment_id
- ( int ) required – Payment ID
Returns
string $gateway Gateway
Source
File name: easy-digital-downloads/includes/payments/functions.php
Lines:
1 to 5 of 5
function edd_get_payment_gateway( $payment_id ) { $payment = new EDD_Payment( $payment_id ); return $payment->gateway; }