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

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

ShortPixel Adaptive Images – WebP, AVIF, CDN, Image Optimization

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
r*s*.de D Jun 14, 2026
m*k*r*v*k*a*.c*m.ua F Jun 14, 2026
a*d*e*f*n*c*h*.it (WP 7.0) F Jun 13, 2026
r*b*i*s*i*c*r*o*.c*.nz (WP 6.8.5) F Jun 13, 2026
k*s*a*m*n*k*.pl (WP 7.0) F Jun 13, 2026
a*a*b.c*.il (WP 7.0) F Jun 13, 2026
p*o*e*s*o*a*-*p*a*e*s.de F Jun 13, 2026
w*r*.in (WP 7.0) F Jun 13, 2026
o*t*i*g*o*p.com D Jun 13, 2026
a*g*r*.blog F Jun 12, 2026
e*e*t*i*c*e*i*t*e*.com F Jun 12, 2026
a*t*o*c*y*t*l*a*c*i*f.com (WP 7.0) F Jun 12, 2026
h*y*.c*.uk D Jun 12, 2026
a*s*r*l*a*a*r*a*a*i*.c*m.au C Jun 12, 2026
v*l*n*i*o.c*.il (WP 6.9.4) D Jun 11, 2026
j*t*s*p*t*l.c*.uk F Jun 10, 2026
w*b*s*c*e*s.be (WP 6.1.10) F Jun 9, 2026
a*m*d*l*d*n*a*c*r*.c*m.au (WP 6.9) F Jun 9, 2026
t*a*e*i*.c*m.pl (WP 7.0) F Jun 9, 2026
p*c*f*c*h*r*h.com F Jun 8, 2026
r*v*e*e*g*n*.io F Jun 8, 2026
m*c*c*.org B Jun 8, 2026
o*e*e*t*m*n*.com D Jun 8, 2026
a*s*h*t*c*.directory (WP 6.9.4) F Jun 8, 2026
g*o*t*g*i*e*.c*.uk F Jun 7, 2026
n*r*h*i*e*p*o*o.com F Jun 7, 2026
m*n*i*k*r*c*o*y.hu D Jun 7, 2026
l*v*l*h*m*.cz (WP 6.9.4) F Jun 7, 2026
t*8.ca (WP 6.8.5) F Jun 7, 2026
b*g*a*t*o*t*m*.com F Jun 7, 2026
b*d*o*s*f*u*i*a*y.com C Jun 6, 2026
t*e*i*g*p*i*t*a*l.com C Jun 6, 2026
t*e*a*e*m*l.com (WP 7.0) C Jun 6, 2026
p*r*-*e*c*e.org F Jun 6, 2026
s*l*s*a*b*o*c*m*.com F Jun 6, 2026
t*e*i*e*a*e*c*.com (WP 5.9.13) F Jun 6, 2026
a*r*f*.com F Jun 5, 2026
t*e*r*a*d*t*r.com F Jun 5, 2026
t*e*l*w*n*e*b*x.com F Jun 5, 2026
t*e*i*t*f*n*.com (WP 7.0) F Jun 5, 2026
t*e*e*c*i*k.com F Jun 5, 2026
g*r*g*d*g*n*s.com (WP 6.8.5) D Jun 5, 2026
g*p*l*a*c*s.com F Jun 5, 2026
t*e*c*o*l*f*e*d*r*h*p*l*.com F Jun 5, 2026
f*e*h*e*s*e*t*v.com (WP 7.0) D Jun 4, 2026
b*a*k*a*k.se D Jun 4, 2026
t*e*e*a*h*e*o*t*a*.com (WP 7.0) F Jun 4, 2026
f*e*w*l*s*a*e.com (WP 7.0) F Jun 3, 2026
t*e*e*l*i*e*e*o*t.com (WP 6.9.4) D Jun 3, 2026
m*l*i*d*a*y.com (WP 6.9) F Jun 3, 2026
a*e*t*u*k*n.com B Jun 3, 2026
t*e*u*s*u*a.com (WP 7.0) F Jun 3, 2026
a*t*l*.com F Jun 3, 2026
a*t*l*r.com F Jun 3, 2026
m*k*e*o*i*w*a*.com A Jun 3, 2026
a*i*n*r*c*.com (WP 6.8.5) D Jun 3, 2026
i*e*s*r*e*.com F Jun 3, 2026
m*k*o*e*h*w.com C Jun 3, 2026
a*i*e*n*s*r*i*a*.com F Jun 3, 2026
p*l*d*n*s*r*n*t*.com (WP 6.9.4) F Jun 3, 2026
t*e*r*u*s*.com (WP 6.8.5) F Jun 3, 2026
a*a*a*i*g*e*t*a*.com C Jun 3, 2026
i*o*o*i*.com (WP 6.9.4) F Jun 3, 2026
m*d*e*t*e*e*r*m*t*r.com F Jun 3, 2026

Top 50 Plugins

Plugin Count
elementor 1,773,066
contact-form-7 1,754,699
elementor-pro 1,053,398
woocommerce 816,868
revslider 609,950
jetpack 456,151
js_composer 420,819
wp-rocket 341,566
essential-addons-for-elementor-lite 265,266
complianz-gdpr 257,980
gravityforms 257,686
google-site-kit 232,621
cookie-law-info 228,902
instagram-feed 225,266
sitepress-multilingual-cms 210,874
header-footer-elementor 207,407
google-analytics-for-wordpress 206,188
bluehost-wordpress-plugin 192,588
elementskit-lite 180,622
gutenberg 167,311
cookie-notice 149,235
litespeed-cache 143,547
gtranslate 125,193
wpforms-lite 124,272
the-events-calendar 122,579
astra-sites 113,631
gutenberg-core 113,508
popup-maker 110,000
woocommerce-payments 109,709
tablepress 102,202
honeypot 97,891
astra-addon 93,947
wp-smushit 91,090
duracelltomi-google-tag-manager 90,451
coblocks 89,789
layerslider 89,525
all-in-one-seo-pack 89,300
bb-plugin 87,066
akismet 85,166
premium-addons-for-elementor 84,433
ml-slider 83,034
cleantalk-spam-protect 82,813
mailchimp-for-wp 82,012
megamenu 80,374
woocommerce-gateway-stripe 79,700
jet-engine 77,827
fusion-builder 77,281
ewww-image-optimizer 76,638
wp-pagenavi 76,523
smart-slider-3 76,327

Top 50 Themes

Theme Count
hello-elementor 621,543
Divi 497,327
astra 415,116
flatsome 137,795
Avada 121,363
generatepress 114,678
oceanwp 80,569
pub 79,286
kadence 78,818
enfold 68,928
salient 65,362
twentyseventeen 54,403
bb-theme 53,484
betheme 52,451
twentytwentyfour 52,191
blocksy 51,007
cocoon-master 49,241
dt-the7 45,528
twentytwentyfive 44,925
woodmart 42,693
h4 39,561
neve 38,220
Avada-Child-Theme 36,954
gox 36,252
bridge 31,437
twentytwentyone 30,343
lightning 29,939
twentytwenty 28,835
swell 27,982
bricks 26,516
Impreza 26,104
Newspaper 24,234
twentytwentythree 22,139
epik-redesign 19,181
twentytwentytwo 18,831
uncode 18,592
twentysixteen 17,623
pro 17,621
sydney 16,585
storefront 16,374
Total 14,410
hello-theme-child-master 14,004
factory-templates-4 13,730
themify-ultra 12,971
extendable 12,866
hestia 12,599
yootheme 12,547
yith-wonder 12,223
porto 11,980
twentyfifteen 11,835