Skip to content

Instantly share code, notes, and snippets.

@totoprayogo1916
Created August 9, 2021 03:09
Show Gist options
  • Save totoprayogo1916/ba2995369b15068340acc9750f04d5dc to your computer and use it in GitHub Desktop.
Save totoprayogo1916/ba2995369b15068340acc9750f04d5dc to your computer and use it in GitHub Desktop.
defer script js - wordpress
<?php
function defer_scripts( $tag, $handle, $src ) {
$defer = array(
'my-js'
);
if ( in_array( $handle, $defer ) ) {
return '<script defer src="' . $src . '" type="text/javascript"></script>';
}
return $tag;
}
add_filter( 'script_loader_tag', 'defer_scripts', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment