apply_filters( 'hidden_columns', string[] $hidden, WP_Screen $screen, bool $use_defaults )
- Since
- 4.4.0, 4.4.1
Filters the list of hidden columns.
Compatibility
- WordPress
- since 4.4.1
- 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
$screenWP_Screen- WP_Screen object of the current screen.
$use_defaultsbool- Whether to show the default columns.
Where this hook fires · 1
wp-admin/includes/screen.php:84get_hidden_columns()
Source code
* @since 4.4.1 Added the `use_defaults` parameter. * * @param string[] $hidden Array of IDs of hidden columns. * @param WP_Screen $screen WP_Screen object of the current screen. * @param bool $use_defaults Whether to show the default columns. */ return apply_filters( 'hidden_columns', $hidden, $screen, $use_defaults );} /** * Prints the meta box preferences for screen meta. * * @since 2.7.0Changelog
Introduced in 4.4.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
4.4.1
Added the
use_defaults parameter.from the docblock4.4.0
Introduced.from the docblock
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.