Skip to content

Early-bird lifetime licence: $199 once, for the first 200 buyers only. See the offer

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.

  • Type PHP
  • Runs Everywhere (runs as WordPress loads)
  • Category Media
  • Tested with WordPress 7.1
PHP
<?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.

Move your snippets over this afternoon.

Importing changes nothing until you switch over, and your old shortcodes keep working.