Retrieves a customize section.
Parameters
$id
stringrequired- 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.
$id
stringrequiredpublic 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.