bp_disable_avatar_uploads( bool $default = true )

Are members able to upload their own avatars?

Description

Parameters

$default

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

Default value: true

Return

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

Source

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

function bp_disable_avatar_uploads( $default = true ) {

	/**
	 * Filters whether or not members are able to upload their own avatars.
	 *
	 * @since BuddyPress 1.6.0
	 *
	 * @param bool $value Whether or not members are able to upload their own avatars.
	 */
	return (bool) apply_filters( 'bp_disable_avatar_uploads', (bool) bp_get_option( 'bp-disable-avatar-uploads', $default ) );
}

Changelog

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.