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
a*z*h*i*a*d.com (WP 6.9.4) โœ… F 2026-05-13 01:40:13
e*t*l*o*m.com โœ… F 2026-05-13 01:20:05
h*m*.e*g*b*n*.com (WP 6.3.1) โš ๏ธ F 2026-05-13 00:59:09
l*v*s*o*x*m*.com (WP 6.9.4) โœ… F 2026-05-13 00:42:52
m*n*m*h*r*p*.com โœ… F 2026-05-13 00:14:14
a*l*l*m.w*e*g*n*.com โœ… F 2026-05-12 23:00:53
c*e*t*y*u*w*y.com (WP 6.8.5) โœ… F 2026-05-12 22:46:55
w*h*o*u*i*n*.com (WP 6.9.4) โœ… C 2026-05-12 22:25:17
e*p*e*d*d*r*s*u*l*i*e.com (WP 6.9.4) โœ… F 2026-05-12 22:09:51
w*t*y*a*t*n.com (WP 6.7.5) โœ… F 2026-05-12 20:08:35
e*p*e*s*s*n*t*a*e*.com โœ… F 2026-05-12 19:29:52
e*e*4.org (WP 6.9.4) โœ… F 2026-05-12 19:27:44
n*t*r*l*a*r*n*i*h*s.com (WP 6.9.4) โœ… D 2026-05-12 18:59:17
d*n*a*u*b*h*n.com (WP 5.7.2) โš ๏ธ F 2026-05-12 18:09:21
h*c*e*d*l*s*a*i*l*s.com โœ… F 2026-05-12 17:24:33
h*c*e*d*l*s*a*n*l*a*.com โœ… F 2026-05-12 17:24:33
t*m*y*i*t*e.com โœ… F 2026-05-12 16:35:45
e*o*i*i*.com (WP 6.9.4) โœ… A 2026-05-12 15:18:14
g*f*a*e*h*w*r*d.com (WP 6.9.4) โœ… F 2026-05-12 14:28:17
t*m*r*a*.com (WP 4.7.29) โš ๏ธ F 2026-05-12 13:21:35
g*e*t*m*t*o*.com โœ… F 2026-05-12 12:53:53
b*i*b*n*y*u*h*u*i*f*s*i*a*.org (WP 6.8.2) โœ… F 2026-05-12 12:50:09
n*t*o*a*e*u*p*e*t*i*e*t.com โœ… F 2026-05-12 12:02:29
m*m*g*e*b*y*n*.com (WP 6.9.4) โœ… F 2026-05-12 11:18:33
l*t*l*b*y*r*m*r*.com (WP 6.9.4) โœ… D 2026-05-12 10:43:18
c*a*t*n*a.com (WP 6.2.1) โš ๏ธ F 2026-05-12 08:30:56
l*t*p*i*t.com โœ… C 2026-05-12 07:59:39
t*l*t*m*j*h*n*e.com โœ… F 2026-05-12 07:34:27
m*l*o*c*c*u*s*e*c*r*i*n*.com ๐Ÿ”“ F 2026-05-12 06:53:04
s*i*r*n*h*t*l.com (WP 5.3.21) โš ๏ธ ๐Ÿ”“ F 2026-05-12 03:50:54
m*j*r*t*.media โœ… C 2026-05-12 02:58:03
n*s*v*l*e*h*r*p*l*c.com (WP 6.9.4) โœ… C 2026-05-12 02:43:37
g*z*e*.com (WP 6.9.4) โœ… F 2026-05-12 00:35:48
l*h*m*s.c*.nz โœ… F 2026-05-11 23:36:48
g*-*s*i*a*i*n.com โœ… F 2026-05-11 23:14:14
c*z*b*t*n*c*.com (WP 6.9.4) โœ… A 2026-05-11 23:03:43
t*n*v*l*a*b*l*.com (WP 6.9.4) โœ… C 2026-05-11 21:10:56
s*i*-*u*.cz (WP 6.6.5) โœ… F 2026-05-11 20:15:28
b*u*d*r*o*n*y*e*k*e*e*s.com โœ… B 2026-05-11 20:13:06
h*m*r*o*.ro โœ… F 2026-05-11 19:40:50
m*k*v*a*d.com โœ… B 2026-05-11 18:56:33
m*z*a*.w*e*g*n*p*w*r*d.com โœ… F 2026-05-11 18:04:42
d*y*d*t*e*s.c*.uk (WP 6.4.8) โš ๏ธ F 2026-05-11 17:59:05
a*e*a*d*i*-*n*h*m.com (WP 6.9.4) โœ… F 2026-05-11 17:34:29
t*n*s*p.com โœ… F 2026-05-11 16:35:36
e*e*i*e*l*e*s.be โœ… D 2026-05-11 16:17:43
b*s*s*f*b*x*s.com (WP 6.7.5) โœ… F 2026-05-11 15:55:11
c*p*t*l.p*r*d*x*t*d*o*t*.com โœ… B 2026-05-11 15:17:53
q*l*t*f*i*g.com โœ… F 2026-05-11 14:41:58
b*s*p*d*a*t*o*t*n*.com (WP 6.9.4) โœ… C 2026-05-11 13:31:13
j*c*b*p*o*u*t*o*s.com โœ… F 2026-05-11 12:59:23
l*n*u*l*f*.com โœ… F 2026-05-11 12:19:35
b*u*v*l*e*i*s.com (WP 6.9.4) โœ… D 2026-05-11 11:38:18
c*u*d*p*u*e*o*s*l*a*t.com โœ… F 2026-05-11 11:22:52
c*u*t*y*i*e*a*d.com (WP 6.9.4) โœ… B 2026-05-11 10:23:21
b*s*m*b*e*r.com (WP 6.9.4) โœ… F 2026-05-11 10:08:38
d*r*u*i.c*.il (WP 5.4.19) โš ๏ธ F 2026-05-11 09:32:41
t*m*l*s*t*v*l*.com (WP 5.2.2) โš ๏ธ F 2026-05-11 09:23:41
g*o*i*d*c*e*n*a*.com (WP 6.9.4) โœ… F 2026-05-11 09:23:16
w*l*v*o.com โœ… D 2026-05-11 09:16:57
q*i*s*g*t*.com (WP 6.9.4) โœ… F 2026-05-11 09:12:50
r*d*i*e*c*l*u*a*d*s*r*c*.org (WP 6.8.5) โœ… F 2026-05-11 07:30:15
t*m*r*o*.com (WP 6.9.4) โœ… F 2026-05-11 07:00:53
g*i*l*u*e*h*r*t.com (WP 6.9.4) โœ… F 2026-05-11 06:58:14
r*s*r*o*r*i*m*k*.org โœ… F 2026-05-11 06:38:16
z*e*d*v*1.ru โœ… F 2026-05-11 06:13:39
j*c*e*d*.com โœ… F 2026-05-11 06:05:40
i*.a*e*p*i.edu (WP 6.6.2) โœ… D 2026-05-11 05:38:37
m*i*o*-*a*s*.com โœ… F 2026-05-11 04:48:46
m*w*e*t*w*f*r*.c*.uk (WP 6.9.4) โœ… F 2026-05-11 04:40:41
p*r*a*p*t*l*a*i*g.com โœ… F 2026-05-11 04:01:17
p*r*a*p*t.com โœ… F 2026-05-11 04:01:17
m*t*m*.cloud โœ… C 2026-05-11 03:35:00
h*p*y*o*f*e*s*n*.com โœ… F 2026-05-11 03:29:17
t*f*y*i*p*n.com โœ… C 2026-05-11 03:24:10
l*b.o*a*o*e*t*a*s*e*.com ๐Ÿ”“ D 2026-05-11 02:58:23
m*i*s*r*e*d*n*a*g*e*h*m.com (WP 6.9.4) โœ… F 2026-05-11 02:18:18
t*e*i*k*r*.c*.nz โœ… F 2026-05-11 02:05:52
n*b*r*s*o*.dk โœ… F 2026-05-11 02:05:06
v*k*n*e*u*e*t*a*b*.dk โœ… F 2026-05-11 02:05:05
e*d*.es (WP 4.9.4) โš ๏ธ F 2026-05-11 01:21:56
e*m*r*a*o*a*k*t.com โœ… F 2026-05-11 01:17:21
g*e*n*e*o*t*r*a*d.com โœ… A 2026-05-11 00:13:36
t*c*m*d*v*r*e*a*y*r*.com โœ… F 2026-05-11 00:11:52
p*t*n*o*r*.com โœ… F 2026-05-11 00:09:57
t*c*m*-*u*-*t*o*n*y*.com โœ… F 2026-05-11 00:07:12
t*c*c*e*l*.com โœ… F 2026-05-10 23:59:41
t*e*u*z*g*n*y.net (WP 6.6.1) โœ… F 2026-05-10 23:48:05
p*t*i*-*o*r*.com โœ… F 2026-05-10 23:47:53
i*r*a.org (WP 6.9.4) โœ… D 2026-05-10 23:34:45
a*b*r*a*a*m*r*s*.com โœ… F 2026-05-10 22:56:38
s*h*c*s*b*r.org โœ… F 2026-05-10 21:34:17
k*e*.art (WP 6.9.4) โœ… F 2026-05-10 21:33:27
h*n*e*v*r*n*a.de ๐Ÿ”“ F 2026-05-10 21:06:23
g*a*a*t*e*a*p*i*n*e*.com โœ… F 2026-05-10 20:25:06
c*r*i*a*m*x*c*.com (WP 6.9.4) โœ… F 2026-05-10 19:40:16
m*h*a*h*t*p*r.com โœ… F 2026-05-10 19:39:25
w*o*e*r*i*d*g*t*l.com โœ… C 2026-05-10 18:15:20
g*o*a*c*s*o*e*r*v*e*s.com โœ… F 2026-05-10 17:57:57
w*i*m*n*u*o*a*i*n.com (WP 6.3.8) โš ๏ธ D 2026-05-10 16:33:06

Top 50 Plugins

Plugin Count
elementor 1,845,026
contact-form-7 1,814,379
elementor-pro 1,074,639
woocommerce 834,328
revslider 631,057
jetpack 474,701
js_composer 442,043
wp-rocket 343,148
essential-addons-for-elementor-lite 303,315
gravityforms 291,645
complianz-gdpr 264,632
cookie-law-info 238,008
instagram-feed 233,160
google-site-kit 227,086
sitepress-multilingual-cms 226,612
google-analytics-for-wordpress 218,275
header-footer-elementor 214,731
elementskit-lite 214,055
bluehost-wordpress-plugin 191,979
gutenberg 165,128
gutenberg-core 163,247
cookie-notice 156,862
litespeed-cache 137,160
the-events-calendar 135,646
wpforms-lite 131,895
gtranslate 131,059
astra-sites 121,430
popup-maker 118,674
woocommerce-payments 114,788
tablepress 113,253
coblocks 101,881
honeypot 100,128
astra-addon 97,326
duracelltomi-google-tag-manager 96,036
wp-smushit 95,656
all-in-one-seo-pack 95,213
LayerSlider 93,578
bb-plugin 92,205
megamenu 89,033
premium-addons-for-elementor 88,891
akismet 87,453
mailchimp-for-wp 85,480
cleantalk-spam-protect 85,280
woocommerce-gateway-stripe 84,759
ml-slider 83,225
borlabs-cookie 82,106
fusion-builder 81,492
wp-pagenavi 81,138
ewww-image-optimizer 80,807
smart-slider-3 79,595

Top 50 Themes

Theme Count
hello-elementor 631,095
Divi 521,797
astra 432,703
flatsome 142,108
Avada 127,084
generatepress 125,483
pub 112,409
oceanwp 85,449
kadence 80,767
twentytwentyfour 80,280
enfold 73,503
salient 68,110
h4 57,690
twentyseventeen 57,578
bb-theme 56,107
betheme 53,173
cocoon-master 52,483
blocksy 52,231
dt-the7 47,224
twentytwentyfive 45,213
sydney 42,519
neve 40,452
Avada-Child-Theme 38,420
woodmart 34,046
gox 34,021
bridge 33,548
twentytwentyone 32,826
lightning 31,937
twentytwenty 30,760
swell 28,919
Impreza 27,210
bricks 26,663
voxel 25,694
twentytwentythree 24,488
Newspaper 24,266
sinatra 22,661
kubio 21,620
twentytwentytwo 20,266
uncode 19,571
epik-redesign 19,281
twentysixteen 18,733
storefront 18,307
pro 18,094
Total 15,054
extendable 14,875
yith-wonder 14,120
hello-theme-child-master 13,717
themify-ultra 13,308
yootheme 13,284
hestia 13,196