bp_get_db_version_raw()
Return the BuddyPress database version.
Description Description
Return Return
(string) The BuddyPress version direct from the database.
Source Source
File: bp-core/bp-core-functions.php
function bp_get_db_version_raw() {
$bp = buddypress();
return !empty( $bp->db_version_raw ) ? $bp->db_version_raw : 0;
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.6.0 | Introduced. |