[codeblock] // আপলোড হওয়া ছবি কনভার্ট করে WebP বানানো add_filter(‘wp_handle_upload’, ‘custom_convert_to_webp_on_upload’); function custom_convert_to_webp_on_upload($image_data) { $file_type = $image_data[‘type’]; $supported_types = [‘image/jpeg’, ‘image/png’]; if (in_array($file_type, $supported_types)) { $image_path = $image_data[‘file’]; $webp_image_path = custom_convert_to_webp($image_path, $file_type); if ($webp_image_path) { wp_delete_file($image_path); // পুরানো ছবি ডিলিট $image_data[‘file’] = $webp_image_path; $image_data[‘type’] = ‘image/webp’; $image_data[‘url’] = str_replace(basename($image_path), basename($webp_image_path), $image_data[‘url’]); } } return $image_data; […]

Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

Awesome!

Thank you for confirming. Please check your spam email!