WP HOOKS
filtrod 2.3.0

wp_admin_css

Args 2Plik wp-includes/general-template.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the stylesheet link to the specified CSS file.

If the site is set to display right-to-left, the RTL stylesheet link will be used instead.

Parametry

ParametrTypOpis
$stylesheet_linkstringHTML link element for the stylesheet.
$filestringStyle handle name or filename (without ".css" extension) relative to wp-admin/. Defaults to 'wp-admin'.

Wywołanie

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

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

Popularne w tej kategorii