wc_format_option_price_separators( string $value, array $option, string $raw_value )

Formats curency symbols when saved in settings.


Description Description


Parameters Parameters

$value

(Required) Option value.

$option

(Required) Option name.

$raw_value

(Required) Raw value.


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/wc-formatting-functions.php

function wc_format_option_price_separators( $value, $option, $raw_value ) {
	return wp_kses_post( $raw_value );
}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.