WP HOOKS
akcjaod 5.4.0

wp_nav_menu_item_custom_fields

Args 5Plik wp-admin/includes/class-walker-nav-menu-edit.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Fires just before the move buttons of a nav menu item in the menu editor.

Parametry

ParametrTypOpis
$item_idstringMenu item ID as a numeric string.
$menu_item\WP_PostMenu item data object.
$depthintDepth of menu item. Used for padding.
$args\stdClass | nullAn object of menu item arguments.
$current_object_idintNav menu ID.

Wywołanie

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

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

Popularne w tej kategorii