widget_display_callback WordPress Filter Hook
The widget_display_callback hook is used to modify the way a widget is displayed. This hook can be used to change the way a widget is displayed on a per-instance basis.
apply_filters( 'widget_display_callback', array $instance , WP_Widget $widget , array $args ) #
Filters the settings for a particular widget instance.
Description
Returning false will effectively short-circuit display of the widget.
Parameters
- $instance
(array)The current widget instance's settings.
- $widget
(WP_Widget)The current widget instance.
- $args
(array)An array of default widget arguments.
Source
Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |