bbpress()
The main function responsible for returning the one true bbPress Instance to functions everywhere.
Description Description
Use this function like you would a global variable, except without needing to declare the global.
Example: <?php $bbp = bbpress(); ?>
Return Return
(bbPress) The one true bbPress Instance
Source Source
File: bbpress.php
function bbpress() {
return bbPress::instance();
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.0.0 | Introduced. |