WP HOOKS
filtrod 2.8.0

page_css_class

Args 5Plik wp-includes/class-walker-page.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the list of CSS classes to include with each page item in the list.

Parametry

ParametrTypOpis
$css_classstring[]An array of CSS classes to be applied to each list item.
$page\WP_PostPage data object.
$depthintDepth of page, used for padding.
$argsarrayAn array of arguments.
$current_page_idintID of the current page.

Wywołanie

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

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

Popularne w tej kategorii