bp_disable_profile_sync( bool $default = false )
Is profile syncing disabled?
Description
Parameters
- $default
-
(Optional) Fallback value if not found in the database. Default: true.
Default value: false
Return
(bool) True if profile sync is enabled, otherwise false.
Source
File: bp-core/bp-core-options.php
function bp_disable_profile_sync( $default = false ) { /** * Filters whether or not profile syncing is disabled. * * @since BuddyPress 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
Version | Description |
---|---|
BuddyPress 1.6.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.