widget_nav_menu_args WordPress Filter Hook
The widget_nav_menu_args hook allows you to modify the arguments used when registering a new navigation menu widget. This can be useful if you need to change the way the menu is displayed, or if you want to add custom arguments to the widget.
apply_filters( 'widget_nav_menu_args', array $nav_menu_args , WP_Term $nav_menu , array $args , array $instance ) #
Filters the arguments for the Navigation Menu widget.
Parameters
- $nav_menu_args
(array)An array of arguments passed to wp_nav_menu() to retrieve a navigation menu.
- 'fallback_cb'
(callable|bool) Callback to fire if the menu doesn't exist. Default empty. - 'menu'
(mixed) Menu ID, slug, or name.
- 'fallback_cb'
- $nav_menu
(WP_Term)Nav menu object for the current menu.
- $args
(array)Display arguments for the current widget.
- $instance
(array)Array of settings for the current widget.
Source
Changelog
Version | Description |
---|---|
4.4.0 | Added the $instance parameter. |
4.2.0 | Introduced. |