You appear to be a bot. Output may be restricted
Description
Checks if taxes are enabled by using the option set from the EDD Settings.
The value returned can be filtered.
Usage
$bool = edd_use_taxes();
Parameters
Returns
bool Whether or not taxes are enabled
Source
File name: easy-digital-downloads/includes/tax-functions.php
Lines:
1 to 4 of 4
function edd_use_taxes() { $ret = edd_get_option( 'enable_taxes', false ); return (bool) apply_filters( 'edd_use_taxes', $ret ); }