mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
5 lines
232 B
Text
5 lines
232 B
Text
function my_defer_scripts($tag, $handle, $src) {
|
|
if ('comment-reply' == $handle) return "<script type='text/javascript' defer src='$src'></script>";
|
|
return $tag;
|
|
}
|
|
add_filter('script_loader_tag', 'my_defer_scripts', 10, 3);
|