WP HOOKS
filtrod 2.8.0

number_format_i18n

Args 3Plik wp-includes/functions.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the number formatted based on the locale.

Parametry

ParametrTypOpis
$formattedstringConverted number in string format.
$numberfloatThe number to convert based on locale.
$decimalsintPrecision 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
}

Popularne w tej kategorii