wpcf7_stripe_get_payment_link()CF7 1.0

Returns payment link URL.

Хуков нет.

Возвращает

Строку. The URL.

Использование

wpcf7_stripe_get_payment_link( $pi_id );
$pi_id(строка) (обязательный)
Payment Intent ID.

Код wpcf7_stripe_get_payment_link() CF7 5.9.3

function wpcf7_stripe_get_payment_link( $pi_id ) {
	return sprintf(
		'https://dashboard.stripe.com/payments/%s',
		urlencode( $pi_id )
	);
}