Tribe__Customizer__Section::get_default( string $key )

Get a single Default Value by key.


Parameters

$key

(string) (Required) The key for the requested value.


Top ↑

Return

(mixed) The requested value.


Top ↑

Source

File: src/Tribe/Customizer/Section.php

	public function get_default( $key ) {
		$defaults = $this->get_defaults();

		if ( ! isset( $defaults[ $key ] ) ) {
			return null;
		}

		return $defaults[ $key ];
	}