On this page
WP_Customize_Manager::get_panel( string $id ): WP_Customize_Panel|void
Retrieves a customize panel.
Parameters
$idstring Required-
Panel ID to get.
Return
WP_Customize_Panel|void Requested panel instance, if set.
Source
File: wp-includes/class-wp-customize-manager.php. View all references
public function get_panel( $id ) {
if ( isset( $this->panels[ $id ] ) ) {
return $this->panels[ $id ];
}
}
Changelog
| Version | Description |
|---|---|
| 4.0.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_customize_manager/get_panel