WP HOOKS
filtrod 2.9.0

override_load_textdomain

Args 4Plik wp-includes/l10n.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters whether to override the .mo file loading.

Parametry

ParametrTypOpis
$overrideboolWhether to override the .mo file loading. Default false.
$domainstringText domain. Unique identifier for retrieving translated strings.
$mofilestringPath to the MO file.
$localestring | nullLocale.

Wywołanie

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

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

Popularne w tej kategorii