Skip to main content
Login Join
Snippet · PHP

Allow WebP Uploads

Shared by Darshit Rajyaguru · May 19, 2026 · @upload_mimes

1 copy
33 views
1 upvote
Back to Snippets

Enables WebP uploads in media library.

function dr_allow_webp_upload( $mimes ) {
    $mimes['webp'] = 'image/webp';

    return $mimes;
}
add_filter( 'upload_mimes', 'dr_allow_webp_upload' );
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments