WP HOOKS
filtrod 4.4.0

nav_menu_item_title

Args 4Plik wp-includes/class-walker-nav-menu.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters a menu item's title.

Parametry

ParametrTypOpis
$titlestringThe menu item's title.
$menu_item\WP_PostThe current menu item object.
$args\stdClassAn object of wp_nav_menu() arguments.
$depthintDepth of menu item. Used for padding.

Wywołanie

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

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

Popularne w tej kategorii