Popis
This plugin optimizes the loading of images (and videos) with prioritization, lazy loading, and more accurate image size selection.
The current optimizations include:
- Ensuring
fetchpriority=high
is only added to anIMG
when it is the Largest Contentful Paint (LCP) element across all responsive breakpoints. - Adding breakpoint-specific
fetchpriority=high
preload links for the LCP elements which areIMG
elements or elements with a CSSbackground-image
inline style. - Applying lazy-loading to
IMG
tags based on whether they appear in any breakpoint’s initial viewport. (Additionally,sizes=auto
is then also correctly applied.) - Adding
fetchpriority=low
toIMG
tags which appear in the initial viewport but are not visible, such as when they are subsequent carousel slides. - Reducing the size of the
poster
image of aVIDEO
from full size to the size appropriate for the maximum width of the video (on desktop). - Lazy-loading
VIDEO
tags by setting the appropriate attributes based on whether they appear in the initial viewport. If aVIDEO
is the LCP element, it getspreload=auto
; if it is in an initial viewport, thepreload=metadata
default is left; if it is not in an initial viewport, it getspreload=none
. Lazy-loaded videos also get initialpreload
,autoplay
, andposter
attributes restored when theVIDEO
is going to enter the viewport.
This plugin requires the Optimization Detective plugin as a dependency. Please refer to that plugin for additional background on how this plugin works as well as additional developer options.
👉 Note: This plugin optimizes pages for actual visitors, and it depends on visitors to optimize pages. As such, you won’t see optimizations applied immediately after activating the plugin. Please wait for URL Metrics to be gathered for both mobile and desktop visits. And since administrator users are not normal visitors typically, optimizations are not applied for admins by default.
There are currently no settings and no user interface for this plugin since it is designed to work without any configuration.
Inštalácia
Installation from within WordPress
- Visit Plugins > Add New.
- Search for Image Prioritizer.
- Install and activate the Image Prioritizer plugin.
Manual installation
- Upload the entire
image-prioritizer
folder to the/wp-content/plugins/
directory. - Visit Plugins.
- Activate the Image Prioritizer plugin.
Časté otázky
-
Where can I submit my plugin feedback?
-
Feedback is encouraged and much appreciated, especially since this plugin may contain future WordPress core features. If you have suggestions or requests for new features, you can submit them as an issue in the WordPress Performance Team’s GitHub repository. If you need help with troubleshooting or have a question about the plugin, please create a new topic on our support forum.
-
Where can I report security bugs?
-
The Performance team and WordPress community take security bugs seriously. We appreciate your efforts to responsibly disclose your findings, and will make every effort to acknowledge your contributions.
To report a security issue, please visit the WordPress HackerOne program.
-
How can I contribute to the plugin?
-
Contributions are always welcome! Learn more about how to get involved in the Core Performance Team Handbook.
The plugin source code is located in the WordPress/performance repo on GitHub.
Recenzie
Pre tento plugin nie sú žiadne recenzie.
Prispievatelia a vývojári
“Image Prioritizer” je softvér s otvoreným zdrojovým kódom. Do tohto pluginu prispeli nasledujúci ľudia.
Prispievatelia„Image Prioritizer“ bol preložený do 5 jazykov. Ďakujeme prekladateľom za ich príspevky.
Preložiť „Image Prioritizer“ do vašho jazyka.
Máte záujem o vývoj?
Prehľadávajte zdrojový kód, preskúmajte SVN repozitár, alebo sa prihláste na odber vývojárskeho logu cez RSS.
Zoznam zmien
0.2.0
Enhancements
- Lazy load videos and video posters. (1596)
- Prioritize loading poster image of video LCP elements. (1498)
- Choose smaller video poster image size based on actual dimensions. (1595)
- Add fetchpriority=low to occluded initial-viewport images (e.g. images in hidden carousel slides). (1482)
- Avoid lazy-loading images and embeds unless there are URL Metrics for both mobile and desktop. (1604)
0.1.4
Enhancements
- Move Auto Sizes logic from Enhanced Responsive Images to Image Prioritizer. (1476)
0.1.3
Bug Fixes
- Fix handling of image prioritization when only some viewport groups are populated. (1404)
0.1.2
- Update PHP logic to account for changes in Optimization Detective API. (1302)
0.1.1
- Fix background-image styled tag visitor’s handling of parsing style without background-image. (1288)
0.1.0
- Initial release.