WordPress OSINT, maintenance or security needs? Reach out!
TLDWP

Plugin: shortpixel-adaptive-images (Used by 1,334 domains)

ShortPixel Adaptive Images โ€“ WebP, AVIF, CDN, Image Optimization

๐Ÿ‘ค ShortPixel ๐Ÿ“ฆ v3.11.2 ๐Ÿ”— Plugin Homepage

An easy-to-use plugin that lets you solve any problems with images and improve your websiteโ€™s Core Web Vitals in a minute.

Imagine if you could solve all your websiteโ€™s image-related problems and increase pagespeed and performance with a simple click, would not that be great?
Usually, images are the biggest resource on a web page. With just one click, ShortPixel Adaptive Images replaces all the pictures on your website with properly sized, smartly-cropped and optimized images and uploads them to ShortPixelโ€™s global CDN.
And for even more Google love, the plugin delivers next-gen WebP or AVIF images to the right browsers auto-magically! ๐Ÿ™‚

Using ShortPixel Adaptive Images also helps with Core Web Vitals (CWV)โ€˜s Largest Contentful Paint (LCP), First Input Delay (FID) and Cumulative Layout Shift (CLS).
This is an important SEO factor that Google uses to rank pages. The smaller the CWV values are, the better for your website.

Do I need this plugin?

If you have a WordPress website with images, the answer is most likely yes!
Have you ever tested your website with tools like PageSpeed Insights or GTmetrix and received complaints that the images are not the right size or are too big? Or that you should be using โ€œnext genโ€ images like WebP or AVIF? Or that the website should โ€œdefer offscreen imagesโ€?
ShortPixel Adaptive Images comes to the rescue and solves the problems with images on your website in no time.
In addition to images, CSS, JS and font files are also minimized and delivered from our global CDN.

What are the benefits?

What are the features?

  • new! you can now set your custom domain to serve images or JSS/CSS files, e.g. cdn.example.com. Read more here.
  • new, lightweight, pure JavaScript Adaptive Images Engine (jQuery no longer required)
  • same visual quality, but smaller images thanks to ShortPixel algorithms
  • smart cropping โ€“ see an example
  • serve only images of appropriate size, depending on the viewport of the visitor
  • lazy load support with adjustable threshold; browser native lazy loading support is also available
  • automatically serves WebP and AVIF images to browsers that support this format. Animated GIFs are also supported and can will converted to animated WebP and animated AVIF!
  • caching and serving from a global CDN for images as well as CSS, JS and fonts
  • CSS/JS files are minimized automatically
  • all major image galleries, sliders and page builders are supported
  • onboarding wizard with a tool that suggests the best settings for each website
  • support for low quality image placeholders (LQIP)
  • support for JPEG, PNG, GIF, TIFF, BMP
  • no need for a separate AVIF or WebP converter plugin, the original images are automatically converted to WebP or AVIF
  • adjustable size breakpoints when resizing images
  • possibility to disable plugin functionality for logged in users
  • multiple types of exclusions available, including and advanced Image Checker Tool
  • Easy and Advanced mode for settings with a variety of settings for an increased flexibility of the plugin functionality

Do I need an account to test this plugin?

No, just install it and activate it on your WordPress website. You will then automatically receive 500 MB of CDN traffic every month. Thatโ€™s about 500 visits/month!

How much does it cost?

When using ShortPixel Adaptive Images, only CDN traffic is counted if you choose to use our CDN. With the free plan, you get 100 credits for image optimization, which is equivalent to 500 MB of CDN traffic or about 500 visits/month. Paid plans start at $4.99 and are available as both one-time and monthly plans.
Even better, if you already use ShortPixel Image Optimizer, you can use the same credits for ShortPixel Adaptive Images!

How does it work?

Different visitors have different devices (laptop, mobile phone, tablet), each with its own screen resolution. ShortPixel AI takes into account the resolution of the device and then provides the right size image for each placeholder.
Let us take a web page with a single image of 640ร—480 pixels.
When viewed from a laptop, the image retains its 640ร—480 pixel size, but is optimized and delivered from our CDN.
When the same web page is viewed from a mobile phone, the image (for example) is resized to 300ร—225 pixels, optimized, and delivered via our CDN.
In this way, neither time nor bandwidth is wasted for visitors.

Other plugins by ShortPixel:

Get in touch!

WP CLI commands

Use the following WP CLI commands to clear the CSS cache and the Low Quality Image Placeholders:
wp shortpixel clear_css
wp shortpixel clear_lqips

For developers

If there are main images in the Media Library that end with the usual thumbnail size suffix (e.g. -100ร—100), please set this in wp-config.php:

define('SPAI_FILENAME_RESOLUTION_UNSAFE', true);

If you need to do post-processing in JavaScript after the image/tag has been updated by ShortPixel AI, you can add a callback like this:

jQuery( document ).ready(function() {
    ShortPixelAI.registerCallback('element-updated', function(elm){
        // elm is the jQuery object, elm[0] is the tag
        console.log("element updated: " + elm.prop('nodeName'));
        });
});

To change the original URL of the image that is detected by ShortPixel, use this filter that receives the original URL:

add_filter('shortpixel/ai/originalUrl', 'my_function');

To return your own custom URL for each language domain for the same website (single plugin installation), use this filter:
add_filter(โ€˜shortpixel/ai/cdnUrlโ€™, function($cdn_url) {
switch($_SERVER[โ€˜HTTP_HOSTโ€™]) { //this is the domain name without protocol
case โ€˜mydomain.comโ€™: //thatโ€™s your main domain
return โ€œhttps://images.mydomain.com/spaiโ€;

    case 'mydomain.fr': //that's your french language domain
        return "https://images.mydomain.fr/spai";

    default:
        return $cdn_url;
}

});

Sometimes when the option to crop images is enabled, SPAI thinks it is not safe to crop an image, but you want to crop it anyway. Please add this attribute to force cropping:

ShortPixel Adaptive Images triggers a JS event after the initial processing of the HTML page in the browser: spai-body-handled, an event after each processed DOM mutation when at least one URL has been replaced: spai-block-handled and an event after the URL of each element has its URL updated lazily ( entering the viewport): spai-element-handled

To exclude certain images, you can also add the following attributes within the โ€˜IMGโ€™ tag to the markup:

     --> this will completely exclude from processing the image which has this attribute;
     --> this will exclude the image from being lazy-loaded by the plugin;
     --> this will prevent the image from being resized by the plugin.

For adding custom replacement rules use:

add_filter('shortpixel/ai/customRules', 'my_function');

The function is given an array and should append ShortPixel\AI\TagRule instances to the given array , as in the example below.
A real-world example of custom image attributes, a custom srcset, and a custom JSON data attribute:

add_filter('shortpixel/ai/customRules', 'spai_to_iconic');
function spai_to_iconic($tagRules) {
    //lazy-loaded data-iconic-woothumbs-src attribute
    $tagRules[] = new ShortPixel\AI\TagRule('img', 'data-iconic-woothumbs-src');
    //eager attribute
    $tagRules[] = new ShortPixel\AI\TagRule('img', 'data-large_image', false, false, false, false, true);
    //lazy srcset style attribute.
    $tagRules[] = new ShortPixel\AI\TagRule('img', 'srcset', false, false, false, false, false,
                    'srcset', 'replace_custom_srcset');
    $tagRules[] = new ShortPixel\AI\TagRule('div', 'data-default', 'iconic-woothumbs-all-images-wrap', false, false, false, false,
                        'srcset', 'replace_custom_json_attr');
    return $tagRules;
}

The parameters of the rule are, in this order:
* tagName โ€“ the tag name
* attribute to be replaced
* classFilter โ€“ only elements having the class, default false
* attrFilter โ€“ only elements having the attribute, default false
* attrValFilter only elements having the attribute with the specified value, default false
* mergeAttr โ€“ advanced usage (see code), default false
* eager โ€“ if true the image is replaced server-side, otherwise is lazy-loaded
* type โ€“ advanced usage (see code), default is โ€˜urlโ€™, can also be โ€˜srcsetโ€™ if it has a srcset or json structure
* callback โ€“ advanced usage (see code), default false. Needs to be โ€˜replace_custom_srcsetโ€™ if the type is srcset, or โ€˜replace_custom_json_attrโ€™ if the type is json
* quickMatch โ€“ advanced usage (see code), default false
* frontEager -advanced usage (see code), default false

In the same manner if you need a rule to be applied only on the front-end (javascript) you can use the following filter:

add_filter('shortpixel/ai/customFrontendRules', 'my_function');

This rule will only be applied by the New JS Engine (so you need to have the option enabled) and is useful if you have content that is rendered by JavaScript and you need the replacement to be made after the content is rendered.

DomainExposuresHeadersLast Checked
m*t*m*t*a*p*s*a*i*g.com โœ… A 2026-06-02 01:38:36
s*l*n*o*t*r*s*o.com โœ… F 2026-06-02 01:04:15
f*r*v*b*s.com (WP 6.9.1) โœ… F 2026-06-02 00:27:41
g*t*t*.tech (WP 5.2.2) โš ๏ธ F 2026-06-01 23:54:48
l*c*h*e*s.com (WP 5.5.18) โš ๏ธ F 2026-06-01 23:48:21
f*b*o*t*.net โœ… F 2026-06-01 23:13:03
c*r*a*d*u*b*.com โœ… F 2026-06-01 22:23:30
f*r*a*c.com (WP 6.9.4) โœ… F 2026-06-01 20:54:46
c*r*i*r*i.com โœ… C 2026-06-01 20:18:13
c*r*i*r*d*a*p*o*o.com (WP 6.8.5) โœ… F 2026-06-01 20:18:12
t*e*a*l*n*.com (WP 7.0) โœ… D 2026-06-01 18:41:14
c*r*e*c*e*n*n*o*t*l*a.com โœ… F 2026-06-01 17:12:00
w*o*w*r*p*o*e*t*.com โœ… F 2026-06-01 16:11:16
f*i*h*o*.church โœ… D 2026-06-01 15:45:31
n*c*e*a*.com โœ… B 2026-06-01 15:27:06
c*m*o*s*l.in โœ… F 2026-06-01 14:14:15
a*d*o*o*c*p*s*l*s.com โœ… C 2026-06-01 11:27:39
1*l*w*e*s*e*r*e.com โœ… F 2026-06-01 10:15:19
h*t*h.com โœ… F 2026-06-01 09:40:40
t*c*n*c*l*a*l.com (WP 7.0) โœ… F 2026-06-01 09:25:08
l*v*n*e*s*r*e*.com (WP 6.9.4) โœ… D 2026-06-01 09:16:26
s*i*s*p*r*o*.com โœ… C 2026-06-01 08:17:48
o*g*n*c*l*f*.co (WP 6.9.4) โœ… D 2026-06-01 06:57:13
f*i*n*l*t.net โœ… D 2026-06-01 06:41:10
s*d*a*.com โœ… A 2026-06-01 06:30:39
m*r*a*i*i*y*o*.com โœ… F 2026-06-01 05:25:10
l*m*n*s.c*.jp โœ… F 2026-06-01 04:34:21
h*n*i*g*a*k.com (WP 6.8.5) โœ… F 2026-06-01 04:15:02
d*a*e*m*b*l*d*t*i*i*g.com โœ… D 2026-06-01 03:53:49
b*o*.r*s*u*c*w*t*h.org (WP 5.7) โš ๏ธ F 2026-06-01 02:22:52
t*c*c*u*e*.com โœ… F 2026-06-01 01:18:37
l*u*a*o*l*n*s*o*t*.com (WP 7.0) โœ… F 2026-06-01 01:10:53
h*n*h*a*.com (WP 6.9.1) โœ… F 2026-06-01 00:54:16
a*x*l*a*e*p*r*o*u*a*e*.es โœ… F 2026-06-01 00:23:12
d*a*a*t*n*g*n*y.com (WP 6.9.4) โœ… D 2026-06-01 00:02:40
h*m*y.com (WP 6.9.4) โœ… F 2026-05-31 23:27:31
s*g*s*h*s*i*a*i*y.com โœ… F 2026-05-31 22:52:49
s*g*s*h*a*t*c*r*.com (WP 7.0) โœ… F 2026-05-31 22:52:49
r*h*t.com โœ… F 2026-05-31 22:48:01
v*y*g*u*w*l*e*n*s*.com (WP 6.9.4) โœ… C 2026-05-31 22:15:28
s*l*r*c*v*r*.org (WP 7.0) โœ… F 2026-05-31 22:13:03
t*k*o*u*.cz (WP 6.4.8) โš ๏ธ F 2026-05-31 22:06:26
t*c*-*a*t*c.com (WP 7.0) โœ… B 2026-05-31 21:57:43
b*b*i*t*k*.p*r*o*.pl โœ… F 2026-05-31 21:44:20
a*o*c*o*g*a*s*t.com ๐Ÿ”“ F 2026-05-31 21:11:24
c*i*.org โœ… F 2026-05-31 21:08:49
m*n*i*t*e*.com (WP 7.0) โœ… F 2026-05-31 19:44:00
i*c*d.org โœ… F 2026-05-31 19:23:13
s*l*p.y*u*a*-*t*d*o.pl (WP 6.2.9) โš ๏ธ F 2026-05-31 18:58:39
f*l*r*o*s*a*i*.com (WP 6.9.4) โœ… D 2026-05-31 18:56:39
g*e.r*t*e*s.edu โœ… F 2026-05-31 18:05:56
f*i*f*s*i*a*.com (WP 7.0) โœ… F 2026-05-31 17:10:43
c*r*l*n*c*n*e*.org (WP 6.9.4) โœ… D 2026-05-31 16:10:27
f*c*s*o*e*.com โœ… C 2026-05-31 15:25:14
d*w*t*e*l*p*e*y*l*p*.com (WP 6.9.4) โœ… F 2026-05-31 14:17:54
t*a*d*w*y.com (WP 6.9.4) โœ… F 2026-05-31 11:22:11
l*m*n*s.it โœ… F 2026-05-31 10:42:15
l*m*n*s.fr โœ… F 2026-05-31 10:42:15
m*n*e*-*e*e.com (WP 7.0) โœ… F 2026-05-31 09:28:33
c*t*i*.it (WP 5.7.15) โš ๏ธ F 2026-05-31 08:59:09
t*e*o*d*f*e*t.com (WP 6.8.3) โœ… F 2026-05-31 08:18:35
l*s*r*r*i*i*g*o*u*i*n.com (WP 7.0) โœ… F 2026-05-31 07:14:17
t*e*i*r*p*i*n*o*i*t*.com โœ… F 2026-05-31 06:47:10
f*y*i*h*e*.com โœ… F 2026-05-31 06:06:35
n*w*i*e*h*i*t*a*b*o*s*n*g*f*s.com โœ… D 2026-05-31 04:51:30
v*v*n*d*s*g*s.com (WP 7.0) โœ… D 2026-05-31 04:41:08
c*p*i*a*e*c*a*.com โœ… F 2026-05-31 03:38:31
f*u*n*w*t*f*i*n*s.com (WP 6.8.5) โœ… F 2026-05-31 01:57:35
l*r*v*e*e*o*k*.com โœ… F 2026-05-31 01:00:02
c*p*a*-*w*n*e*.com (WP 6.0.12) โš ๏ธ D 2026-05-31 00:59:37
t*e*r*w*c*o*c*.com ๐Ÿ”“ F 2026-05-30 21:58:58
t*m*u*m*t*u*o*e.com (WP 6.6.1) โœ… F 2026-05-30 21:43:23
t*m*o*n*i*.com (WP 6.9.3) โœ… C 2026-05-30 21:39:37
i*s*e*f*r*t*n*.com โœ… F 2026-05-30 21:35:43
d*o*2*o*r*h*r*e*i*g.com (WP 6.8.3) โœ… F 2026-05-30 19:11:35
p*e*i*r*i*e*t*a*e*i*s.com โœ… C 2026-05-30 18:37:27
n*o*l*.mx (WP 6.9.4) โœ… C 2026-05-30 18:16:34
a*y*n*i*o*g*r*.com โœ… F 2026-05-30 18:09:49
p*e*i*r*g*n*i*s*t.com (WP 7.0) โœ… F 2026-05-30 17:09:46
n*w*w*v*s*l*t*o*s.com โœ… D 2026-05-30 16:28:29
n*w*w*v*-*o*u*i*n*.com โœ… D 2026-05-30 16:28:29
s*r*n*b*.science โœ… F 2026-05-30 15:54:02
b*d*o*z*f*u*i*a*y.org โœ… C 2026-05-30 14:39:41
c*n*o*i*g*l*u*z*r.com (WP 5.9.13) โš ๏ธ F 2026-05-30 14:04:34
t*c.io (WP 6.5.8) โœ… F 2026-05-30 12:32:28
f*o*r*n*e*v.com โœ… F 2026-05-30 12:07:40
c*m*h*l*b*o*d*u*t*n.org (WP 7.0) โœ… F 2026-05-30 12:03:44
j*b*s*a*t.no โœ… F 2026-05-30 11:59:14
l*n*y*r*c*r*s.com (WP 5.4.17) โš ๏ธ F 2026-05-30 11:49:15
c*n*h*s*v*n*e*a*l*d*u*i*.com (WP 6.8.5) โœ… F 2026-05-30 11:40:50
l*n*s*i.com โœ… D 2026-05-30 11:14:17
a*t*a*e*.com โœ… F 2026-05-30 09:37:37
k*d*c*p*o*u*t*o*s.com โœ… F 2026-05-30 09:09:47
g*e*n*e*e*a*l*i*c.com โœ… F 2026-05-30 07:35:46
c*n*n*w*e*l*.com (WP 7.0) โœ… D 2026-05-30 06:10:24
f*e*y*p.com โœ… F 2026-05-30 05:30:27
n*t*o*c*r*.com โœ… F 2026-05-30 03:15:41
n*r*i*m*r*e.org (WP 6.8.5) โœ… F 2026-05-30 02:43:16
t*e*r*n*b*y.com (WP 6.8.5) ๐Ÿ”“ B 2026-05-30 01:28:48
d*m*i*e*n*i*s*r*e*.com โœ… F 2026-05-30 01:23:08

Top 50 Plugins

Plugin Count
elementor 1,834,974
contact-form-7 1,805,395
elementor-pro 1,069,674
woocommerce 831,175
revslider 628,526
jetpack 473,249
js_composer 440,228
wp-rocket 341,005
essential-addons-for-elementor-lite 300,145
gravityforms 270,579
complianz-gdpr 262,997
cookie-law-info 236,572
instagram-feed 232,313
google-site-kit 226,154
sitepress-multilingual-cms 225,560
google-analytics-for-wordpress 217,459
header-footer-elementor 213,861
elementskit-lite 211,389
bluehost-wordpress-plugin 191,844
gutenberg 164,589
gutenberg-core 162,474
cookie-notice 155,603
litespeed-cache 135,239
the-events-calendar 134,880
wpforms-lite 131,470
gtranslate 130,461
astra-sites 121,039
popup-maker 118,166
woocommerce-payments 114,462
tablepress 112,366
coblocks 101,429
honeypot 99,514
astra-addon 96,982
duracelltomi-google-tag-manager 95,600
wp-smushit 95,268
all-in-one-seo-pack 94,836
LayerSlider 93,178
bb-plugin 91,997
megamenu 88,536
premium-addons-for-elementor 88,535
akismet 87,226
mailchimp-for-wp 85,188
cleantalk-spam-protect 85,035
woocommerce-gateway-stripe 84,457
ml-slider 82,764
borlabs-cookie 81,569
fusion-builder 81,119
wp-pagenavi 80,609
ewww-image-optimizer 80,505
formidable 79,254

Top 50 Themes

Theme Count
hello-elementor 627,686
Divi 519,455
astra 431,031
flatsome 140,279
Avada 126,551
generatepress 124,831
pub 111,883
oceanwp 85,062
kadence 80,297
enfold 73,148
salient 67,774
twentytwentyfour 59,833
h4 57,433
twentyseventeen 57,275
bb-theme 55,987
betheme 52,878
cocoon-master 52,403
blocksy 51,939
dt-the7 47,031
twentytwentyfive 44,923
neve 40,199
Avada-Child-Theme 38,272
sydney 37,893
woodmart 33,918
gox 33,881
bridge 33,424
twentytwentyone 32,668
lightning 31,833
twentytwenty 30,617
swell 28,847
Impreza 27,049
bricks 26,563
twentytwentythree 24,358
Newspaper 24,061
voxel 23,714
kubio 20,713
sinatra 20,411
twentytwentytwo 20,219
uncode 19,485
epik-redesign 19,279
twentysixteen 18,605
storefront 18,237
pro 18,053
Total 14,987
extendable 14,808
yith-wonder 14,114
hello-theme-child-master 13,652
themify-ultra 13,248
yootheme 13,220
hestia 13,119