bp_disable_profile_sync( bool $default = false )
Is profile syncing disabled?
Description Description
Parameters Parameters
- $default
-
(Optional) Fallback value if not found in the database. Default: true.
Default value: false
Return Return
(bool) True if profile sync is enabled, otherwise false.
Source Source
File: bp-core/bp-core-options.php
function bp_disable_profile_sync( $default = false ) {
/**
* Filters whether or not profile syncing is disabled.
*
* @since 1.6.0
*
* @param bool $value Whether or not syncing is disabled.
*/
return (bool) apply_filters( 'bp_disable_profile_sync', (bool) bp_get_option( 'bp-disable-profile-sync', $default ) );
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.6.0 | Introduced. |