bp_disable_cover_image_uploads( bool $default = false )
Are members able to upload their own cover images?
Description Description
Parameters Parameters
- $default
-
(Optional) Fallback value if not found in the database. Default: false.
Default value: false
Return Return
(bool) True if cover image uploads are disabled, otherwise false.
Source Source
File: bp-core/bp-core-options.php
function bp_disable_cover_image_uploads( $default = false ) {
/**
* Filters whether or not members are able to upload their own cover images.
*
* @since 2.4.0
*
* @param bool $value Whether or not members are able to upload their own cover images.
*/
return (bool) apply_filters( 'bp_disable_cover_image_uploads', (bool) bp_get_option( 'bp-disable-cover-image-uploads', $default ) );
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.4.0 | Introduced. |