Αυτό το πρόσθετο δεν έχει δοκιμασθεί με τις 3 τελευταίες κύριες εκδόσεις του WordPress. Μπορεί να μην αναπτύσσεται ή να υποστηρίζεται άλλο και να έχει προβλήματα συμβατότητας με τις πιο πρόσφατες εκδόσεις του WordPress.

Render Faster

Περιγραφή

This plugin optimize page rendering of WordPress theme.

Features

  • Add loading="lazy" or loading="eager" with your images.
  • Add defer or async attributes to your scripts.
  • Add rel="preload" to your stylesheets. Polyfill for old browsers is also available.
  • Remove default script helper of embeds(twitter, instagram) and load one after user interaction.

All of above are selectable and you can customize with white list.

Case 1. Image Loading

If you wish header logo(.custom-logo) and main post thumbnail(.post-feature-image) should be load faster because they are in first view.

Just put custom-logo,post-feature-image at High Priority section in your setting screen.

Case 2. Stop Defer

Defering JavaScripts sometimes breaks your site.
For example, if a script requires just in time operation with inline script tag, it will fail.

<script id="some-script-js" src="somescript.js" defer></script>
<script>
new SomeScript();
</script>

To avoid this, Add some-script handle name in Deny Defer section in your setting screen.

Generally speaking, many JavaScripts loaded in your WordPress are issued by WordPress Core, plugins, themes, your custom code, and so on.

To optimize JavaScript loading, try and error approaches works fine.

Case 3. Critical Stylesheet

rel="preload" attributes makes your stylesheets loaded asynchrounsely, but FOUC(Flush of Unstyled Content) happens.

To avoid this, include critical CSS to Deny List in your setting screen. Critical CSS are generally your theme’s main stylesheet.

Εγκατάσταση

From Plugin Repository

Click install and activate it.

From Github

See releases.

Συχνές Ερωτήσεις

Where can I get supported?

Please create new ticket on support forum.

How can I contribute?

Create a new issue or send pull requests.

Κριτικές

Δεν υπάρχουν αξιολογήσεις για αυτό το πρόσθετο.

Συνεισφέροντες & Προγραμματιστές

“Render Faster” είναι λογισμικό ανοιχτού κώδικα. Οι παρακάτω έχουν συνεισφέρει στη δημιουργία του.

Συντελεστές

Το “Render Faster” έχει μεταφραστεί σε 1 γλώσσα. Ευχαριστούμε τους μεταφραστές για τις συνεισφορές τους.

Μεταφράστε το “Render Faster” στην γλώσσα σας.

Ενδιαφέρεστε για την ανάπτυξη;

Περιηγηθείτε στον κώδικα, ανατρέξτε στο αποθετήριο SVN ή εγγραφείτε στο αρχείο καταγραφής αλλαγών ανάπτυξης μέσω RSS .

Σύνοψη αλλαγών

1.2.0

  • Support separate loading of block styles. Available on WP 5.8 and later.

1.1.0

  • Support embed optimization.

1.0.0

  • First release.