BBP_Theme_Compat::__get( string $property )
Get a theme’s property.
Description Description
Parameters Parameters
- $property
-
(Required)
- $value
-
(Required)
Return Return
(mixed)
Source Source
File: includes/core/theme-compat.php
public function __get( $property ) { return array_key_exists( $property, $this->_data ) ? $this->_data[ $property ] : ''; }
Changelog Changelog
Version | Description |
---|---|
2.1.0 | Introduced. |