Changeset 46662 for trunk/src/wp-admin/includes/screen.php
- Timestamp:
- 11/05/2019 09:28:51 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/screen.php
r46596 r46662 141 141 142 142 /** 143 * Get Hidden Meta Boxes143 * Gets an array of IDs of hidden meta boxes. 144 144 * 145 145 * @since 2.7.0 146 146 * 147 147 * @param string|WP_Screen $screen Screen identifier 148 * @return array Hidden Meta Boxes148 * @return string[] IDs of hidden meta boxes. 149 149 */ 150 150 function get_hidden_meta_boxes( $screen ) { … … 173 173 * @since 3.1.0 174 174 * 175 * @param array $hidden An arrayof meta boxes hidden by default.175 * @param string[] $hidden An array of IDs of meta boxes hidden by default. 176 176 * @param WP_Screen $screen WP_Screen object of the current screen. 177 177 */ … … 184 184 * @since 3.3.0 185 185 * 186 * @param array $hidden An arrayof hidden meta boxes.186 * @param string[] $hidden An array of IDs of hidden meta boxes. 187 187 * @param WP_Screen $screen WP_Screen object of the current screen. 188 188 * @param bool $use_defaults Whether to show the default meta boxes. … … 234 234 * @since 3.0.0 235 235 * 236 * @param mixed$hook_name Optional. The hook name (also known as the hook suffix) used to determine the screen,237 * or an existing screen object.236 * @param string|WP_Screen $hook_name Optional. The hook name (also known as the hook suffix) used to determine the screen, 237 * or an existing screen object. 238 238 */ 239 239 function set_current_screen( $hook_name = '' ) {
Note: See TracChangeset
for help on using the changeset viewer.