filtrod 4.7.0
wp_get_custom_css
Opis — z kodu źródłowego
Filters the custom CSS output into the head element.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$css | string | CSS pulled in from the Custom CSS post type. |
$stylesheet | string | The theme stylesheet name. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_get_custom_css', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_get_custom_css', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}Popularne w tej kategorii