Warning: This function has been deprecated.
bp_exists( string $component_name )
Description Description
Parameters Parameters
- $component_name
-
(Required)
Return Return
(boolean)
Source Source
File: bp-core/deprecated/1.7.php
function bp_exists( $component_name ) {
_deprecated_function( __FUNCTION__, '1.7' );
if ( function_exists( $component_name . '_install' ) )
return true;
return false;
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.7.0 | Introduced. |