BBP_Theme_Compat::__get( string $property )

Get a theme’s property.


Description Description


Parameters Parameters

$property

(Required)

$value

(Required)


Top ↑

Return Return

(mixed)


Top ↑

Source Source

File: includes/core/theme-compat.php

	public function __get( $property ) {
		return array_key_exists( $property, $this->_data )
			? $this->_data[ $property ]
			: '';
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.1.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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