bp_attachments_get_allowed_mimes( string $type = '', array $allowed_types = array() )

Get allowed attachment mime types.

Description

Parameters

$type

(Optional) The extension types to get (Optional).

Default value: ''

$allowed_types

(Optional) List of allowed extensions.

Default value: array()

Return

(array) List of allowed mime types.

Source

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

249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
function bp_attachments_get_allowed_mimes( $type = '', $allowed_types = array() ) {
    if ( empty( $allowed_types ) ) {
        $allowed_types = bp_attachments_get_allowed_types( $type );
    }
 
    $validate_mimes = wp_match_mime_types( join( ',', $allowed_types ), wp_get_mime_types() );
    $allowed_mimes  = array_map( 'implode', $validate_mimes );
 
    /**
     * Include jpg type if jpeg is set
     */
    if ( isset( $allowed_mimes['jpeg'] ) && ! isset( $allowed_mimes['jpg'] ) ) {
        $allowed_mimes['jpg'] = $allowed_mimes['jpeg'];
    }
 
    return $allowed_mimes;
}

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.