Retrieves a customize section.
Parameters
$idstringrequired- Section ID.
Source
public function get_section( $id ) {
if ( isset( $this->sections[ $id ] ) ) {
return $this->sections[ $id ];
}
}
Changelog
| Version | Description |
|---|---|
| 3.4.0 | Introduced. |
Retrieves a customize section.
$idstringrequiredpublic function get_section( $id ) {
if ( isset( $this->sections[ $id ] ) ) {
return $this->sections[ $id ];
}
}
| Version | Description |
|---|---|
| 3.4.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.