filtrod 1.5.0
theme_root_uri
Opis — z kodu źródłowego
Filters the URI for themes directory.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$theme_root_uri | string | The URI for themes directory. |
$siteurl | string | WordPress web address which is set in General Options. |
$stylesheet_or_template | string | The stylesheet or template name of the theme. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'theme_root_uri', '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( 'theme_root_uri', 'twoja_funkcja', 10, 3 );
function twoja_funkcja($param_1, $param_2, $param_3) {
// Twój kod
}Popularne w tej kategorii