首页
VPS优惠码(更新ing)
美国VPS主机推荐
精选便宜VPS
其它便宜VPS
便宜服务器
VPS代购
关于
English
更多
VPS优惠码(更新ing)
美国VPS主机推荐
精选便宜VPS
其它便宜VPS
便宜服务器
VPS代购
关于
English
Search
1
搬瓦工:CN2线路VPS年付46.7美元起,2.5-10Gbps带宽CN2 GIA线路季付46.7美元起
13,004 阅读
2
免费试用4小时的VPN
10,570 阅读
3
多国免费代理—飞迅VPN代理FXvpn
5,770 阅读
4
DediPath:Memorial Day全场VPS五折年付10美元起,洛杉矶独立服务器月付39美元起
4,976 阅读
5
3D肉蒲团之极乐宝鉴
3,327 阅读
VPS优惠动态
VPS推荐
VPS指南/教程
VPS评测
独立服务器
免费空间
域名相关
其它
软件相关
Search
标签搜索
KVM
洛杉矶
OpenVZ
XEN
香港VPS
洛杉矶VPS
日本VPS
便宜服务器
圣何塞
凤凰城
达拉斯
高防VPS
西雅图
CN2 GIA
香港CN2
80VPS
支持支付宝
CN2
洛杉矶MC
新加坡VPS
VPSok
累计撰写
6,871
篇文章
累计收到
15
条评论
首页
栏目
VPS优惠动态
VPS推荐
VPS指南/教程
VPS评测
独立服务器
免费空间
域名相关
其它
软件相关
页面
VPS优惠码(更新ing)
美国VPS主机推荐
精选便宜VPS
其它便宜VPS
便宜服务器
VPS代购
关于
English
搜索到
1
篇与
s.w.org
的结果
2019-04-11
WordPress头部去除window._wpemojiSettings代码
最近对之聚的wordpress版本进行了升级,懒癌患者加上技术盲,之前还一直在使用wordpress3.9,升级到最新wordpress之后,在查看网页源代码的时候发现,头部多了一长串乱七八糟的代码,查了下貌似是表情加载之类的,对我没有什么用,而且看起来很不舒服,所以把它去掉。 图截得小了,不好意思……反正这一篇都是,通过网上搜索的方法,在主题的functions.php文件中加入如下代码即可: /**去除window._wpemojiSettings**/ remove_action( ""admin_print_scripts"", ""print_emoji_detection_script""); remove_action( ""admin_print_styles"", ""print_emoji_styles""); remove_action( ""wp_head"", ""print_emoji_detection_script"", 7); remove_action( ""wp_print_styles"", ""print_emoji_styles""); remove_filter( ""the_content_feed"", ""wp_staticize_emoji""); remove_filter( ""comment_text_rss"", ""wp_staticize_emoji""); remove_filter( ""wp_mail"", ""wp_staticize_emoji_for_email""); 在处理这个问题的时候,无意中看到有人提到另一个问题,查看网页源码中有下面这句: link rel=""dns-prefetch"" href=""//s.w.org""; 在头部添加了dns-prefetch,从s.w.org预获取表情和头像,但s.w.org国内根本无法访问,应该一点用都没有,也可以禁用它,同样,也是通过在主题的functions.php文件中加入代码。 方法一 remove_action( ""wp_head"", ""wp_resource_hints"", 2 ); 方法二 function remove_dns_prefetch( $hints, $relation_type ) { if ( ""dns-prefetch"" === $relation_type ) { return array_diff( wp_dependencies_unique_hosts(), $hints ); } return $hints; } add_filter( ""wp_resource_hints"", ""remove_dns_prefetch"", 10, 2 ); 据说第二种兼容性更好,不过我就用的第一种也能用。 本文所涉及代码及方法来源于网络
2019年04月11日
2,431 阅读
0 评论
37 点赞