You appear to be a bot. Output may be restricted
Description
Get the URL of the Transaction Failed page
Usage
$mixed|void = edd_get_failed_transaction_uri( $extras );
Parameters
- $extras
- ( bool ) optional – Extras to append to the URL
Returns
mixed|void Full URL to the Transaction Failed page, if present, home page if it doesn't exist
Source
File name: easy-digital-downloads/includes/checkout/functions.php
Lines:
1 to 10 of 10
function edd_get_failed_transaction_uri( $extras = false ) { $uri = edd_get_option( 'failure_page', '' ); $uri = ! empty( $uri ) ? trailingslashit( get_permalink( $uri ) ) : home_url(); if ( $extras ) { $uri .= $extras; } return apply_filters( 'edd_get_failed_transaction_uri', $uri ); }