WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 250 | * Filters the list of widget-type IDs that should **not** be offered by the |
| 251 | * Legacy Widget block. |
| 252 | * |
| 253 | * Returning an empty array will make all widgets available. |
| 254 | * |
| 255 | * @since 5.8.0 |
| 256 | * |
| 257 | * @param string[] $widgets An array of excluded widget-type IDs. |
| 258 | */ |
| 259 | $editor_settings['widgetTypesToHideFromLegacyWidgetBlock'] = apply_filters( |
| 260 | 'widget_types_to_hide_from_legacy_widget_block', |
| 261 | array( |
| 262 | 'pages', |
| 263 | 'calendar', |
| 264 | 'archives', |
| 265 | 'media_audio', |
| 266 | 'media_image', |
| 267 | 'media_gallery', |
| 268 | 'media_video', |