wc_get_path_define_tokens()
Fetches an array containing all of the configurable path constants to be used in tokenization.
Hooks from the function
Returns
Array. The key is the define and the path is the constant.
Usage
wc_get_path_define_tokens();
wc_get_path_define_tokens() wc get path define tokens code WC 10.8.1
function wc_get_path_define_tokens() {
$defines = array(
'ABSPATH',
'WP_CONTENT_DIR',
'WP_PLUGIN_DIR',
'WPMU_PLUGIN_DIR',
'PLUGINDIR',
'WP_THEME_DIR',
);
$path_tokens = array();
foreach ( $defines as $define ) {
if ( defined( $define ) ) {
$path_tokens[ $define ] = constant( $define );
}
}
return apply_filters( 'woocommerce_get_path_define_tokens', $path_tokens );
}