apply_filters( "views_{$this->screen->id}", string[] $views )
- Since
- 3.1.0
Filters the list of available list table views.
Description
The dynamic portion of the hook name, $this->screen->id, refers to the ID of the current screen.
Compatibility
- WordPress
- since 3.1.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$viewsstring[]- An array of available list table views.
Where this hook fires · 3
wp-admin/includes/class-wp-list-table.php:528WP_List_Table::views()wp-admin/includes/class-wp-media-list-table.php:332WP_Media_List_Table::views()wp-admin/includes/class-wp-plugin-install-list-table.php:343WP_Plugin_Install_List_Table::views()
Source code
* to the ID of the current screen. * * @since 3.1.0 * * @param string[] $views An array of available list table views. */ $views = apply_filters( "views_{$this->screen->id}", $views ); if ( empty( $views ) ) { return; } $this->screen->render_screen_reader_content( 'heading_views' );Changelog
Introduced in 3.1.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 7.1.0 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.