WP HOOKS
filtrod 4.7.0

wp_get_custom_css

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

Opis — z kodu źródłowego

Filters the custom CSS output into the head element.

Parametry

ParametrTypOpis
$cssstringCSS pulled in from the Custom CSS post type.
$stylesheetstringThe 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
}

Popularne w tej kategorii