bbPress::__unset( $key )
Magic method for unsetting bbPress variables
Description Description
Source Source
File: bbpress.php
public function __unset( $key ) {
if ( isset( $this->data[ $key ] ) ) {
unset( $this->data[ $key ] );
}
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.3.0 | Introduced. |