filtrod 2.8.0
number_format_i18n
Opis — z kodu źródłowego
Filters the number formatted based on the locale.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$formatted | string | Converted number in string format. |
$number | float | The number to convert based on locale. |
$decimals | int | Precision of the number of decimal places. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'number_format_i18n', 'twoja_funkcja', 10, 3 );
function twoja_funkcja($param_1, $param_2, $param_3) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'number_format_i18n', 'twoja_funkcja', 10, 3 );
function twoja_funkcja($param_1, $param_2, $param_3) {
// Twój kod
}Popularne w tej kategorii