bp_attachments_get_max_upload_file_size( string $type = '' )
Get the max upload file size for any attachment.
Description
Parameters
- $type
-
(Optional) A string to inform about the type of attachment we wish to get the max upload file size for.
Default value: ''
Return
(int) Max upload file size for any attachment.
Source
File: bp-core/bp-core-attachments.php
function bp_attachments_get_max_upload_file_size( $type = '' ) {
$fileupload_maxk = bp_core_get_root_option( 'fileupload_maxk' );
if ( '' === $fileupload_maxk ) {
$fileupload_maxk = 5120000; // 5mb;
} else {
$fileupload_maxk = $fileupload_maxk * 1024;
}
/**
* Filter here to edit the max upload file size.
*
* @since BuddyPress 2.4.0
*
* @param int $fileupload_maxk Max upload file size for any attachment.
* @param string $type The attachment type (eg: 'avatar' or 'cover_image').
*/
return apply_filters( 'bp_attachments_get_max_upload_file_size', $fileupload_maxk, $type );
}
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.