{"id":29292905,"url":"https://github.com/tarosky/render-faster","last_synced_at":"2026-05-17T18:02:56.663Z","repository":{"id":47639226,"uuid":"386015056","full_name":"tarosky/render-faster","owner":"tarosky","description":"Render page faster than ever.","archived":false,"fork":false,"pushed_at":"2021-08-20T06:29:02.000Z","size":36,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2023-09-05T19:10:27.852Z","etag":null,"topics":["pagespeed-insights","wordpress","wordpress-plugin","wordpress-plugin-published"],"latest_commit_sha":null,"homepage":"https://wordpress.org/plugins/render-faster/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tarosky.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-07-14T17:02:45.000Z","updated_at":"2023-04-19T12:29:05.000Z","dependencies_parsed_at":"2022-08-23T14:50:38.968Z","dependency_job_id":null,"html_url":"https://github.com/tarosky/render-faster","commit_stats":null,"previous_names":[],"tags_count":6,"template":null,"template_full_name":null,"purl":"pkg:github/tarosky/render-faster","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tarosky%2Frender-faster","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tarosky%2Frender-faster/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tarosky%2Frender-faster/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tarosky%2Frender-faster/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tarosky","download_url":"https://codeload.github.com/tarosky/render-faster/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tarosky%2Frender-faster/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263882342,"owners_count":23524469,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["pagespeed-insights","wordpress","wordpress-plugin","wordpress-plugin-published"],"created_at":"2025-07-06T10:11:50.202Z","updated_at":"2026-05-17T18:02:56.658Z","avatar_url":"https://github.com/tarosky.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Render Faster\n\nTags: theme, speed, optimization  \nContributors: tarosky, Takahashi_Fumiki  \nTested up to: 5.7  \nRequires at least: 5.5  \nRequires PHP: 5.6  \nStable Tag: nightly  \nLicense: GPLv3 or later  \nLicense URI: http://www.gnu.org/licenses/gpl-3.0.txt\n\nRender the page faster. Enhance your site's load page for Core Web Vital.\n\n## Deprecation Notice\n\n**This plugin is no longer maintained and will be closed on WordPress.org.**\n\nWhen Render Faster was first released (2021), it provided features that were missing from WordPress core. Since then, WordPress has absorbed most of those optimizations natively, which means this plugin is no longer necessary on modern WordPress sites (6.3+).\n\nIf you are currently using Render Faster, please deactivate and remove it, and use the replacements described below.\n\n### Migration Guide\n\n| Feature of Render Faster | Replacement | Available since |\n|---|---|---|\n| `loading=\"lazy\"` on `\u003cimg\u003e` | WordPress core (automatic) | WP 5.5 |\n| `loading=\"lazy\"` on `\u003ciframe\u003e` | WordPress core (automatic) | WP 5.7 |\n| `fetchpriority=\"high\"` / eager loading for the LCP image | WordPress core (automatic) | WP 6.3 |\n| `defer` / `async` on scripts | Script Loading Strategies API — pass `strategy` to `wp_enqueue_script()` / `wp_register_script()` | WP 6.3 |\n| Loading only the block styles used on the page | `should_load_separate_core_block_assets` filter, or `wp_enqueue_block_style()` | WP 5.8 |\n| Removing `jquery-migrate` | A small custom snippet, or a dedicated plugin such as _Disable jQuery Migrate_ | — |\n| Preloading stylesheets (`rel=\"preload\"`) and the `loadCSS` polyfill | Not recommended on modern browsers. Consider Critical CSS tooling or a full-featured performance plugin (WP Rocket, NitroPack, FlyingPress, LiteSpeed Cache, Jetpack Boost, etc.) | — |\n| Lazy loading Twitter / Instagram embed helper scripts | Handle inside your theme, or use a full-featured performance plugin listed above | — |\n\n## Description\n\nThis plugin optimize page rendering of WordPress theme.\n\n### Features\n\n- Add `loading=\"lazy\"` or `loading=\"eager\"` with your images.\n- Add `defer` or `async` attributes to your scripts.\n- Add `rel=\"preload\"` to your stylesheets. Polyfill for old browsers is also available.\n- Remove default script helper of embeds(twitter, instagram) and load one after user interaction.\n\nAll of above are selectable and you can customize with white list.\n\n### Case 1. Image Loading\n\nIf you wish header logo(`.custom-logo`) and main post thumbnail(`.post-feature-image`) should be load faster because they are in first view.\n\nJust put `custom-logo,post-feature-image` at **High Priority** section in your setting screen.\n\n### Case 2. Stop Defer\n\nDefering JavaScripts sometimes breaks your site.\nFor example, if a script requires just in time operation with inline script tag, it will fail.\n\n```\n\u0026lt;script id=\"some-script-js\" src=\"somescript.js\" defer\u0026gt;\u0026lt;/script\u0026gt;\n\u0026lt;script\u0026gt;\nnew SomeScript();\n\u0026lt;/script\u0026gt;\n```\n\nTo avoid this, Add `some-script` handle name in **Deny Defer** section in your setting screen.\n\nGenerally speaking, many JavaScripts loaded in your WordPress are issued by WordPress Core, plugins, themes, your custom code, and so on.\n\nTo optimize JavaScript loading, try and error approaches works fine.\n\n### Case 3. Critical Stylesheet\n\n\u003ccode\u003erel=\"preload\"\u003c/code\u003e attributes makes your stylesheets loaded asynchrounsely, but FOUC(Flush of Unstyled Content) happens.\n\nTo avoid this, include critical CSS to **Deny List** in your setting screen. Critical CSS are generally your theme's main stylesheet.\n\n## Installation\n\n### From Plugin Repository\n\nClick install and activate it.\n\n### From Github\n\nSee [releases](https://github.com/tarosky/render-faster/releases).\n\n## FAQ\n\n### Where can I get supported?\n\nPlease create new ticket on support forum.\n\n### How can I contribute?\n\nCreate a new [issue](https://github.com/tarosky/render-faster/issues) or send [pull requests](https://github.com/tarosky/render-faster/pulls).\n\n## Changelog\n\n### 1.2.0\n\n* Support separate loading of block styles. Available on WP 5.8 and later.\n\n### 1.1.0\n\n* Support embed optimization.\n\n### 1.0.0\n\n* First release.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftarosky%2Frender-faster","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftarosky%2Frender-faster","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftarosky%2Frender-faster/lists"}