Tempaloo WebP
The pricing problem with most WebP plugins WordPress generates 5-8 thumbnails for every image you upload (thumbnail, medium, medium_large, large, full, plus theme-specific sizes). Most popular optimizers count each thumbnail as a separate credit, so a single product photo or blog hero can burn through 6-8 credits before you’ve touched your second image. Tempaloo charges 1 credit per upload, no matter how many sizes WordPress derives from it. Same quota, 6-8x more usable conversions. Concrete comparison — 1,000 uploads / month ShortPixel / Imagify (per-thumbnail billing): 6,000 to 8,000 credits consumed → you need a 10k or 20k plan. Tempaloo (per-upload billing): 1,000 credits consumed → our 5,000-image Starter plan covers you 5x over. If your site averages 4+ thumbnails per upload (which it does, by default), Tempaloo is the lowest cost-per-converted-image on the market. Built for Agencies managing 10–100 client sites tired of credit math and license-per-site upcharges (our Growth plan covers 5 sites; Business covers unlimited). WooCommerce stores with 50+ photos per product who blow through ShortPixel quotas in days. Photographers, portfolios, magazines who want AVIF + high quality without the Imagify Pro tier. What’s in version 1.0 Async upload pipeline — conversion runs in a fresh PHP process via non-blocking loopback, so your uploads finish instantly and we never fight other plugins on the same WordPress filter chain (security scanners, page builders, other optimizers). Most optimizers convert sync inline; that’s where conflicts come from. Bulk converter with adaptive backoff, pause/resume, and live progress (current image, savings counter, ETA). Diagnostic + reconcile tab — drift detection across filesystem, attachment metadata, bulk state, and retry queue. One click to repair desynchronized state. Most optimizers leave this to the user; we audit it. AVIF on every paid tier — not a Pro-only add-on. Starter (5€/mo) already includes it. WP-CLI — wp tempaloo status / activate / bulk / restore / quota. First-class deploy story for managed WordPress hosts. Picture-tag and URL-rewrite delivery modes — picture-tag works with Gutenberg, Elementor, Bricks, Divi, Beaver Builder, WooCommerce, and any theme. URL rewrite stays out of your markup. CDN passthrough also supported. Compatibility hardening — atomic temp+rename writes, explicit nocache_headers() + DONOTCACHEPAGE so LiteSpeed Cache, WP Rocket, and W3 Total Cache never serve stale admin data. Developer hooks — three filters/actions to skip attachments, override quality, and react after conversion. See “Developer hooks” below. Pricing Free plan: 250 images / month, 1 site, no credit card required. Starter (5 €/mo): 5,000 images/month, AVIF included. Growth (12 €/mo): 25,000 images/month, 5 sites per license. Business (29 €/mo): 150,000 images/month, unlimited sites. Unlimited (59 €/mo): fair-use 500k/mo, priority SLA. Paid plans include a 7-day trial and a 30-day money-back guarantee. Credits roll over up to 30 days on paid plans. Full details at https://tempaloo.com/webp. Trademarks WebP and AVIF are open image formats developed by Google and the Alliance for Open Media respectively. Tempaloo is an independent product and is not affiliated with, endorsed by, or sponsored by Google or the Alliance for Open Media. ShortPixel, Imagify, EWWW, Smush, and Optimole are trademarks of their respective owners and are referenced for comparison purposes only. External services This plugin connects to the Tempaloo conversion API hosted at https://api.tempaloo.com to: Verify your license key when you activate the plugin. Convert images to WebP or AVIF — the plugin sends your image files (temporarily, not stored) along with your license key and site URL. Fetch your current monthly quota. Receive webhooks from Freemius (our payment processor) for subscription events. What data is sent Your license key (required for authentication). Your site URL (for license-to-site binding). The image bytes to be converted (streamed, never persisted on our servers — originals stay on your server). Your WordPress and plugin version (for compatibility diagnostics). Data retention Image data is held in memory only during conversion, then discarded. Usage logs (count of conversions, byte totals, duration) are stored for billing and analytics, associated with your license. No personal data beyond what is needed to authenticate your license: your account email (collected at activation or via Google OAuth) and the URL of the WordPress site where the license is active. Both are necessary for license enforcement and are detailed in our privacy policy at https://tempaloo.com/privacy. Providers Conversion API: Tempaloo (hosted in Frankfurt, EU). Terms of Service Privacy Policy Payment processing (paid plans only, triggered by clicking “Upgrade”): Freemius, Inc. Freemius Privacy Policy Freemius Terms By activating this plugin and entering a license key, you agree to Tempaloo’s Terms and Privacy Policy. Privacy See the External services section above for a full disclosure of the data this plugin sends to the Tempaloo API. Developer hooks Three hooks let you tailor the plugin’s behavior from your own theme or custom plugin. They fire on both the auto-convert-on-upload path and the bulk path (CLI or admin), so a single rule applies everywhere. apply_filters( 'tempaloo_webp_skip_attachment', false, $attachment_id, $mode ) Return true to bypass conversion for a specific attachment. Useful to exclude a folder, a CPT, or images larger than a threshold. apply_filters( 'tempaloo_webp_quality_for', $quality, $attachment_id, $format ) Override the quality value (1–100) per attachment. Returned values are clamped to 1–100. Useful to lift quality on portfolio shots or drop it on product thumbnails. do_action( 'tempaloo_webp_after_convert', $attachment_id, $info ) Fired after a successful conversion (one or more sizes written). $info contains format, converted, failed, mode, quality, sizes. Useful for CDN purges, custom logging, webhooks, manifest rebuilds. Example — skip conversion for any attachment in the private/ upload subfolder: add_filter( 'tempaloo_webp_skip_attachment', function( $skip, $id ) { $path = get_attached_file( $id ); return $path && false !== strpos( $path, '/uploads/private/' ); }, 10, 2 ); Source code Tempaloo WebP is open source under the GPLv2 (or later) license. All compiled assets are generated from human-readable sources included in this distribution — no obfuscated or auto-generated code without a matching source. Compiled assets The admin dashboard UI is built with Vite + React + TailwindCSS. The compiled output (build/admin.js and build/admin.css) is generated from the source files under admin-app/: TypeScript / TSX source: admin-app/src/ Build configuration: admin-app/vite.config.ts, admin-app/tsconfig.json, admin-app/tailwind.config.js, admin-app/postcss.config.js Dependency manifest: admin-app/package.json (and admin-app/package-lock.json for reproducible installs) How to rebuild From the plugin root: cd admin-app npm install npm run build This regenerates build/admin.js and build/admin.css. Output is deterministic — same source plus same lock file produce the same bytes. npm run typecheck runs the TypeScript compiler in `--noEmit` mode for a standalone type check. Third-party libraries All third-party libraries are pulled in via npm (declared in admin-app/package.json) — none are vendored as pre-built minified files in this repository. Their licenses are MIT and compatible with GPLv2-or-later. React 18 — https://react.dev (MIT) React DOM 18 — https://react.dev (MIT) clsx — https://github.com/lukeed/clsx (MIT) @freemius/checkout — https://github.com/Freemius/checkout (MIT) TailwindCSS — https://tailwindcss.com (MIT) Vite — https://vitejs.dev (MIT) PostCSS — https://postcss.org (MIT) Autoprefixer — https://github.com/postcss/autoprefixer (MIT)
Top keywords
- tempaloo13×1.09%
- https11×0.92%
- admin-app10×0.84%
- license10×0.84%
- mit9×0.76%
- webp9×0.76%
- conversion8×0.67%
- 0007×0.59%
- admin7×0.59%
- attachment7×0.59%
- com7×0.59%
- image7×0.59%
Perfect Images
Perfect Images handles the basics of WordPress image management that should have been built-in from the start. Manage image sizes, disable the ones you don’t need, add custom sizes, and regenerate thumbnails in bulk. It’s the essential foundation every WordPress install needs for clean, efficient image handling. Think of it as your image management base layer. WordPress creates too many sizes? Disable them. Need a custom thumbnail size? Add it. Want retina support or modern formats like WebP/AVIF? Enable those modules. Perfect Images gives you complete control without bloat. Explore our official site and check out the tutorial to get started. Core Features ⚙️ Image Size Management The foundation of everything. View all registered image sizes (WordPress defaults, theme sizes, plugin sizes), disable the ones you don’t need, and add custom sizes. Finally, control over those pesky WordPress-generated sizes like medium_large, 1536x1536, and 2048x2048. 🔄 Regenerate Thumbnails Bulk regenerate thumbnails after changing sizes or switching themes. Progress tracking, smart processing, and automatic cleanup of old unused sizes. 🖼️ Retina Images (Module) Optional module for high-DPI displays. Automatically generate and serve crisp @2x versions of your thumbnails. Works seamlessly with WordPress responsive images. 🎨 Modern Formats (Module) Optional WebP/AVIF conversion. Convert images to modern formats for smaller file sizes and faster loading—without replacing your originals. 🚀 Easy IO (Module) Optional CDN-based image optimization via EWWW. Automatically converts and delivers your images in WebP/AVIF, resizes on the fly, and serves them from a global CDN—zero server configuration required. 🤖 AI Features (Module) Optional AI-powered tools. Upscale images via Claid.ai when your source is too small, or use the AI Assistant to analyze your sizes and recommend which to enable or disable based on your theme’s srcset needs. 🖼️ Retina Images Your visitors expect sharp, crisp images. Perfect Images makes retina support effortless. Smart Generation: Automatic retina creation for all thumbnail sizes Multiple delivery methods (Responsive Images, PictureFill, Retina.js) Works with WordPress srcset natively Full-size retina support Delivery Options: Responsive Images: Modern, standard method PictureFill: Hybrid approach with fallbacks Retina.js: Client-side detection Choose what fits your theme best 🎨 Modern Formats WebP and AVIF offer dramatically better compression than JPEG/PNG—up to 50% smaller files with the same visual quality. What You Get: Generate WebP or AVIF for any image size Automatic browser detection and fallbacks Works alongside your original images Enable for thumbnails or full-size Responsive Images delivery built-in 🤖 AI Features Perfect Images integrates with AI services to help you manage and optimize your images smarter. AI Assistant: Analyzes your image sizes and recommends which to enable or disable Detects redundant retina sizes already covered by other thumbnails Understands srcset behavior—sizes don’t need to be pixel-perfect Requires AI Engine plugin Upscaling (via Claid.ai): Generate retina images without 2x source files Create thumbnails larger than the original image Multiple upscaling modes (Smart Enhance, Digital Art, Photo, etc.) Automatic or manual processing ⚙️ Image Tools The Image Tools dashboard lets you manage all your media in one place—regenerate thumbnails, build retina images, generate WebP/AVIF, and more, individually or in bulk. Regenerate Thumbnails: Bulk regenerate all thumbnails Progress tracking for large libraries Preserves custom crops Updates retina and WebP versions automatically Replace Images: Swap images directly from Media Library Drag & drop replacement in dashboard Maintains all metadata and links Updates all thumbnails instantly Manage Sizes: View all registered image sizes Disable unwanted sizes (medium_large, 1536×1536, etc.) Create custom sizes Track which sizes are enabled per image Disable Image Threshold: Stop WordPress from creating “-scaled” versions Keep your original full-size images intact Pro Features Full-size retina images Full-size WebP/AVIF conversion Priority support Why Perfect Images? Essential Foundation Every WordPress site needs proper image size management and thumbnail control. Perfect Images makes it simple, giving you the baseline image handling WordPress should have included. Modular & Lightweight Start with just image size management and thumbnail regeneration. Enable retina, WebP, Easy IO, or AI modules only when you need them. No bloat, no unnecessary features. Works with Everything Compatible with WooCommerce, page builders, galleries, and any theme. It uses WordPress’s native image handling, so there are no conflicts. No Database Bloat Everything works through WordPress’s existing metadata structure. No custom tables, no performance overhead. Built for Real Workflows Developed by someone who manages dozens of WordPress sites. Every feature solves a real problem we’ve encountered over years of WordPress development.