我有一个基于wordpress的网站,我需要删除type =" text / javascript"并输入=" text / css"对于html头中的脚本和样式。
我在wp_head()和其他文件中搜索过,但实际上无法找到确切来自的地方。
哪个文件有此代码?
答案 0 :(得分:0)
尝试在您的functions.php上使用此代码
add_filter('style_loader_tag', 'remove_type_attr', 10, 2);
add_filter('script_loader_tag', 'remove_type_attr', 10, 2);
function remove_type_attr($tag, $handle) {
return preg_replace( "/type=['\"]text\/(javascript|css)['\"]/", '', $tag );
}