修复http/https协议下,css js无法加载问题

温馨提示: 本文最后更新于2024-09-20 14:49:11,某些文章具有时效性,若有错误或已失效,请在下方 留言或联系 苏晨博客网

按需配置

//开启https加载js和css/
// wordpress强制跳转https后,JS/CSS不加载的解决方案
add_filter('script_loader_src', 'agnostic_script_loader_src', 20,2);
function agnostic_script_loader_src($src, $handle) {
	return preg_replace('/^(http|https):/', '', $src);
}
add_filter('style_loader_src', 'agnostic_style_loader_src', 20,2);
function agnostic_style_loader_src($src, $handle) {
	return preg_replace('/^(http|https):/', '', $src);
}

 

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容