我有一个基于wordpress的网站, 在其中我需要删除html头中的脚本和样式的type =” text / javascript”和type =” text / css”。
我在wp_head()和其他文件中进行了搜索, 但实际上找不到确切的来源。
哪个文件具有此代码?
#1
尝试在你的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 );
}
评论前必须登录!
注册