filtrod 4.2.0
category_css_class
Opis — z kodu źródłowego
Filters the list of CSS classes to include with each category in the list.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$css_classes | string[] | An array of CSS classes to be applied to each list item. |
$category | \WP_Term | Category data object. |
$depth | int | Depth of page, used for padding. |
$args | array | An array of wp_list_categories() arguments. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'category_css_class', 'twoja_funkcja', 10, 4 );
function twoja_funkcja($param_1, $param_2, $param_3, $param_4) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'category_css_class', 'twoja_funkcja', 10, 4 );
function twoja_funkcja($param_1, $param_2, $param_3, $param_4) {
// Twój kod
}Popularne w tej kategorii