Automattic\WooCommerce\Admin
Loader::get_currency_settings() public WC 1.0
Return an object defining the currecy options for the site's current currency
{} Это метод класса: Loader{}
Хуки из метода
Возвращает
Массив
. Settings for the current currency {
Array of settings.
@type string $code Currency code. @type string $precision Number of decimals. @type string $symbol Symbol for currency.
}
Использование
$result = Loader::get_currency_settings();
Код Loader::get_currency_settings() Loader::get currency settings WC 5.2.2
public static function get_currency_settings() {
$code = get_woocommerce_currency();
return apply_filters(
'wc_currency_settings',
array(
'code' => $code,
'precision' => wc_get_price_decimals(),
'symbol' => html_entity_decode( get_woocommerce_currency_symbol( $code ) ),
'symbolPosition' => get_option( 'woocommerce_currency_pos' ),
'decimalSeparator' => wc_get_price_decimal_separator(),
'thousandSeparator' => wc_get_price_thousand_separator(),
'priceFormat' => html_entity_decode( get_woocommerce_price_format() ),
)
);
}