woocommerce_get_order_currency filter-hook . WC 1.0
Deprecated from version 3.0.0. It is no longer supported and can be removed in future releases. It is recommended to replace this hook with the same one.╳
Deprecated: 3.0.0
Get currency.
Usage
add_filter( 'woocommerce_get_order_currency', 'filter_function_name_6376', 10, 2 ); function filter_function_name_6376( $currency, $that ){ // filter... return $currency; }
- $currency
- -
- $that
- -
Changelog
Deprecated | 3.0.0 |
Where the hook is called
woocommerce_get_order_currency
woocommerce/includes/legacy/abstract-wc-legacy-order.php 754
return apply_filters( 'woocommerce_get_order_currency', $this->get_currency(), $this );