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 |
|---|---|
| 240 | * Filters the list of widget-type IDs that should **not** be offered by the |
| 241 | * Legacy Widget block. |
| 242 | * |
| 243 | * Returning an empty array will make all widgets available. |
| 244 | * |
| 245 | * @since 5.8.0 |
| 246 | * |
| 247 | * @param array $widgets An array of excluded widget-type IDs. |
| 248 | */ |
| 249 | $editor_settings['widgetTypesToHideFromLegacyWidgetBlock'] = apply_filters( |
| 250 | 'widget_types_to_hide_from_legacy_widget_block', |
| 251 | array( |
| 252 | 'pages', |
| 253 | 'calendar', |
| 254 | 'archives', |
| 255 | 'media_audio', |
| 256 | 'media_image', |
| 257 | 'media_gallery', |
| 258 | 'media_video', |