wp_edit_nav_menu_walker WordPress Filter Hook
The wp_edit_nav_menu_walker hook is used to modify the default behavior of the WordPress menu editor. This hook allows you to override the default behavior of the menu editor and define your own custom behavior.
apply_filters( 'wp_edit_nav_menu_walker', string $class , int $menu_id ) #
Filters the Walker class used when adding nav menu items.
Parameters
- $class
(string)The walker class to use. Default 'Walker_Nav_Menu_Edit'.
- $menu_id
(int)ID of the menu being rendered.
Source
Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |