WP HOOKS
filtrod 2.5.0

wp_sprintf

Args 2Plik wp-includes/formatting.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters a fragment from the pattern passed to wp_sprintf().

If the fragment is unchanged, then sprintf() will be run on the fragment.

Parametry

ParametrTypOpis
$fragmentstringA fragment from the pattern.
$argstringThe argument.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_sprintf', 'twoja_funkcja', 10, 2 );

function twoja_funkcja($param_1, $param_2) {
	// Twój kod
}

Popularne w tej kategorii