bbp_is_update()
Compare the bbPress version to the DB version to determine if updating
Description Description
Return Return
(bool) True if update, False if not
Source Source
File: includes/core/update.php
function bbp_is_update() { $raw = (int) bbp_get_db_version_raw(); $cur = (int) bbp_get_db_version(); $retval = (bool) ( $raw < $cur ); return $retval; }
Changelog Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |