You appear to be a bot. Output may be restricted
Description
Determines if we're currently on the Purchase History page.
Usage
$bool = edd_is_purchase_history_page();
Parameters
Returns
bool True if on the Purchase History page, false otherwise.
Source
File name: easy-digital-downloads/includes/template-functions.php
Lines:
1 to 5 of 5
function edd_is_purchase_history_page() { $ret = edd_get_option( 'purchase_history_page', false ); $ret = $ret ? is_page( $ret ) : false; return apply_filters( 'edd_is_purchase_history_page', $ret ); }