This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Options::get( null $key = null, bool $default = false )


Parameters

$key

(null) (Optional)

Default value: null

$default

(bool) (Optional)

Default value: false


Return

(array|bool|mixed|void) Get the option by dot notation, option->get('value.subvalue')


Source

File: classes/Options.php

	private function get( $key = null, $default = false ) {
		return dozent_array_get( $key, $this->option, $default );
	}