BBP_Default::__construct( $properties = array() )
The main bbPress (Default) Loader
Description Description
Source Source
File: templates/default/bbpress-functions.php
public function __construct( $properties = array() ) {
parent::__construct( bbp_parse_args( $properties, array(
'id' => 'default',
'name' => 'bbPress Default',
'version' => bbp_get_version(),
'dir' => trailingslashit( bbpress()->themes_dir . 'default' ),
'url' => trailingslashit( bbpress()->themes_url . 'default' ),
), 'default_theme' ) );
$this->setup_actions();
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.1.0 | Introduced. |