Generates missing thumbnails automatically when images are uploaded.
add_action( 'add_attachment', function( $attachment_id ) {
$file = get_attached_file( $attachment_id );
if ( ! $file || ! wp_attachment_is_image( $attachment_id ) ) {
return;
}
require_once ABSPATH . 'wp-admin/includes/image.php';
$metadata = wp_generate_attachment_metadata( $attachment_id, $file );
if ( ! is_wp_error( $metadata ) ) {
wp_update_attachment_metadata( $attachment_id, $metadata );
}
} );