Smaller upload limit for non-administrators
Users who aren’t administrators can upload files up to 2 MB. Stops 12 MB phone photos from filling the server.
<?php
add_filter(
'upload_size_limit',
static function ( $bytes ) {
if ( current_user_can( 'manage_options' ) ) {
return $bytes;
}
return min( $bytes, 2 * MB_IN_BYTES );
}
);
Good to know
Change 2 to the number of megabytes you want. The server’s own limit still applies to everyone.
In these packs
- Images and media: Sharper, lighter images, tidier uploads and a more useful media library.