Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save salehahmadbabu/6457180bb015d1507013339e96804713 to your computer and use it in GitHub Desktop.
Save salehahmadbabu/6457180bb015d1507013339e96804713 to your computer and use it in GitHub Desktop.
add_filter('script_loader_tag', 'clean_script_tag');
function clean_script_tag($input) {
$input = str_replace("type='text/javascript' ", '', $input);
return str_replace("'", '"', $input);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment