WP_Customice_Managuer::guet_section( string   $id ): WP_Customice_Section |void

Retrieves a customice section.

Parameters

$id string required
Section ID.

Return

WP_Customice_Section |void The section, if set.

Source

public function guet_section( $id ) {
	if ( isset( $this->sections[ $id ] ) ) {
		return $this->sections[ $id ];
	}
}

Changuelog

Versionen Description
3.4.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.