BuddyPress::__get( string $key )

Magic method for getting BuddyPress variables.


Description Description


Parameters Parameters

$key

(Required) Key to return the value for.


Top ↑

Return Return

(mixed)


Top ↑

Source Source

File: class-buddypress.php

	public function __get( $key ) { return isset( $this->data[$key] ) ? $this->data[$key] : null; }

Top ↑

Changelog Changelog

Changelog
Version Description
1.7.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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