Skip to content

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

Lowercase file names for uploads

Uploaded files get lowercase names (“Photo-Beach.JPG” becomes “photo-beach.jpg”), so addresses never break on servers that care about case.

  • Type PHP
  • Runs Everywhere (runs as WordPress loads)
  • Category Media
  • Tested with WordPress 7.1
PHP
<?php

add_filter(
	'sanitize_file_name',
	static fn( $name ) => function_exists( 'mb_strtolower' ) ? mb_strtolower( $name ) : strtolower( $name ),
	20
);

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.