wc_get_price_thousand_separator хук-фільтрWC 2.3

Дозволяє змінити роздільник тисяч для цін.

Розділювач також можна змінити через адмінку:
WooCommerce->Настройки->Основные->Настройки валюты

Використання

add_filter( 'wc_get_price_thousand_separator', 'wp_kama_wc_get_price_thousand_separator_filter');

/**
 * Function for `wc_get_price_thousand_separator` filter-hook.
 *
 * @param $option
 *
 * @return
 */
function wp_kama_wc_get_price_thousand_separator_filter( $option ){

	// Filter...
	return $option;
}
$option
Розділювач, збережений у адмінці.

Приклади

0

#1 Змінимо роздільник

add_filter( 'wc_get_price_thousand_separator', 'change_price_thousand_separator' );

function change_price_thousand_separator(){
	return '';
}

echo wc_price(15000); //> 15 000

список змін

З версії 2.3Введено.

Де викликається хук

wc_get_price_thousand_separator

woocommerce/includes/wc-formatting-functions.php 516

return stripslashes( apply_filters( 'wc_get_price_thousand_separator', get_option( 'woocommerce_price_thousand_sep' ) ) ));

Де використовується хук у WooCommerce

Використання не знайдено.

Залишити відповідь

Ваша e-mail адреса не оприлюднюватиметься. Обов’язкові поля позначені *