bp_disable_cover_image_uploads( bool $default = false )

Are members able to upload their own cover photos?

Description

Parameters

$default

(Optional) Fallback value if not found in the database. Default: false.

Default value: false

Return

(bool) True if cover photo uploads are disabled, otherwise false.

Source

File: bp-core/bp-core-options.php

595
596
597
598
599
600
601
602
603
604
605
function bp_disable_cover_image_uploads( $default = false ) {
 
    /**
     * Filters whether or not members are able to upload their own cover photos.
     *
     * @since BuddyPress 2.4.0
     *
     * @param bool $value Whether or not members are able to upload their own cover photos.
     */
    return (bool) apply_filters( 'bp_disable_cover_image_uploads', (bool) bp_get_option( 'bp-disable-cover-image-uploads', $default ) );
}

Changelog

Changelog
Version Description
BuddyPress 2.4.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.