bp_disable_group_cover_image_uploads( bool $default = false )

Are group cover photos disabled?

Description

Parameters

$default

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

Default value: false

Return

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

Source

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

650
651
652
653
654
655
656
657
658
659
660
function bp_disable_group_cover_image_uploads( $default = false ) {
 
    /**
     * Filters whether or not members are able to upload group cover photos.
     *
     * @since BuddyPress 2.4.0
     *
     * @param bool $value Whether or not members are able to upload thier groups cover photos.
     */
    return (bool) apply_filters( 'bp_disable_group_cover_image_uploads', (bool) bp_get_option( 'bp-disable-group-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.