Retrieves a customize panel.
Parameters
$id
stringrequired- Panel ID to get.
Source
public function get_panel( $id ) {
if ( isset( $this->panels[ $id ] ) ) {
return $this->panels[ $id ];
}
}
Changelog
Version | Description |
---|---|
4.0.0 | Introduced. |
Retrieves a customize panel.
$id
stringrequiredpublic function get_panel( $id ) {
if ( isset( $this->panels[ $id ] ) ) {
return $this->panels[ $id ];
}
}
Version | Description |
---|---|
4.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.