A WordPress plugin that improves Core Web Vitals score by loading scripts via worker thread. Keeps the main thread idle for users to interact with page as quickly as possible.
- Uses Worker Thread - This plugin uses worker thread for all the scripts loaded via
wp_enqueue_scripts
function, to minimize the main thread scripts execution, and loads them only on the user interactions like tap, click, scroll or keypress events. - Disables Emojis - Removes core WP Emojis javascript to reduce extra script execution.
- With the help of
rt_scripts_handler
function hooked withscripts_loader_tag
filter, the function outputs all script tags withtype="text/rtscript"
which are loaded viawp_enqueue_scripts
. - You can filter or skip some javascripts incase any error occurs by adding script handle like this and then scripts will load normally on main thread by path or handles via backend plugin option.