Last active
November 11, 2022 21:43
-
-
Save futtta/01ba20efa0893edb52b0a233a5c05ae8 to your computer and use it in GitHub Desktop.
POC to defer inline JS that requires jQuery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action('plugins_loaded','ao_defer_inline_init'); | |
function ao_defer_inline_init() { | |
if ( get_option('autoptimize_js_include_inline') != 'on' ) { | |
add_filter('autoptimize_html_after_minify','ao_defer_inline_jquery',10,1); | |
} | |
} | |
function ao_defer_inline_jquery( $in ) { | |
if ( preg_match_all( '#<script.*>(.*)</script>#Usmi', $in, $matches, PREG_SET_ORDER ) ) { | |
foreach( $matches as $match ) { | |
if ( $match[1] !== '' && ( strpos( $match[1], 'jQuery' ) !== false || strpos( $match[1], '$' ) !== false ) ) { | |
// inline js that requires jquery, wrap deferring JS around it to defer it. | |
$new_match = 'var aoDeferInlineJQuery=function(){'.$match[1].'}; if (document.readyState === "loading") {document.addEventListener("DOMContentLoaded", aoDeferInlineJQuery);} else {aoDeferInlineJQuery();}'; | |
$in = str_replace( $match[1], $new_match, $in ); | |
} else if ( $match[1] === '' && strpos( $match[0], 'src=' ) !== false && strpos( $match[0], 'defer' ) === false ) { | |
// linked non-aggregated JS, defer it. | |
$new_match = str_replace( '<script ', '<script defer ', $match[0] ); | |
$in = str_replace( $match[0], $new_match, $in ); | |
} | |
} | |
} | |
return $in; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Somehow it works when you use Code Snippets Pro plugin but not when you paste the code in the functions.php file.