apply_filters( 'hidden_meta_boxes', string[] $hidden, WP_Screen $screen, bool $use_defaults )
- Since
- 3.3.0
Filters the list of hidden meta boxes.
Compatibility
- WordPress
- since 3.3.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
$screenWP_Screen- WP_Screen object of the current screen.
$use_defaultsbool- Whether to show the default meta boxes.
Default true.
Where this hook fires · 1
wp-admin/includes/screen.php:194get_hidden_meta_boxes()
Source code
* * @param string[] $hidden An array of IDs of hidden meta boxes. * @param WP_Screen $screen WP_Screen object of the current screen. * @param bool $use_defaults Whether to show the default meta boxes. * Default true. */ return apply_filters( 'hidden_meta_boxes', $hidden, $screen, $use_defaults );} /** * Register and configure an admin screen option * * @since 3.1.0Changelog
Introduced in 3.3.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.