WordPress移除head头部js、css、feed等多余加载项

在我们开发WordPress主题时,细心的小伙伴或发现网站头部如果加载head页面就会出现很多系统自带的加载项目,例如自带的css、js、feed、style等多余信息。

这些加载项目很多是没有必要加载的,那么我们如何将这些多余的head头部信息移除呢?

方法很简单,网上针对此类WordPress优化的教程也很多,今天就给大家整理下。

解决方法

//去除头部多余加载信息
remove_action( \'wp_head\', \'wp_generator\' );//移除WordPress版本
remove_action( \'wp_head\', \'rsd_link\' );//移除离线编辑器开放接口
remove_action( \'wp_head\', \'wlwmanifest_link\' );//移除离线编辑器开放接口
remove_action( \'wp_head\', \'index_rel_link\' );//去除本页唯一链接信息
remove_action( \'wp_head\', \'parent_post_rel_link\', 10, 0 ); //清除前后文信息
remove_action( \'wp_head\', \'start_post_rel_link\', 10, 0 );//清除前后文信息
remove_action( \'wp_head\', \'adjacent_posts_rel_link_wp_head\', 10, 0 );//清除前后文信息
remove_action( \'wp_head\', \'feed_links\', 2 );//移除文章和评论feed
remove_action( \'wp_head\', \'feed_links_extra\', 3 ); //移除分类等feed
remove_action( \'wp_head\', \'rest_output_link_wp_head\', 10 ); //移除wp-json
remove_action( \'wp_head\', \'print_emoji_detection_script\', 7 ); //头部的JS代码
add_filter( \'show_admin_bar\', \'__return_false\' );//移除wp-json链接
remove_action( \'wp_head\', \'rel_canonical\' ); //rel=canonical
remove_action( \'wp_head\', \'wp_shortlink_wp_head\', 10, 0 ); //rel=shortlink
//remove_action( \'wp_head\', \'wp_print_styles\', 8 ); //移除后台插件加载css
remove_action( \'wp_head\', \'print_emoji_detection_script\', 7 );//移除emoji载入js
remove_action( \'admin_print_scripts\', \'print_emoji_detection_script\' );//emoji载入js
remove_action( \'wp_print_styles\', \'print_emoji_styles\' );//移除emoji载入css
remove_action( \'admin_print_styles\', \'print_emoji_styles\' );
remove_action( \'wp_head\', \'rest_output_link_wp_head\', 10 );
remove_action(\'wp_head\',\'wp_resource_hints\',2);//移除dns-prefetch

使用方法

将上面代码添加到主题的functions.php文件中, 保存后在看看网站的代码。

head头部是不是少了很多多余加载项信息

查看更多... 提高网络安全意识,养成良好上网习惯,网络下载文件先扫描杀毒。不要随意点击不明邮件中的链接、图片、文件,适当设置找回密码的提示问题。当收到与个人信息和金钱相关(如中奖、集资等)的邮件时要提高警惕。不要轻易打开陌生人发送至手机的链接和文件。在微信、QQ等程序中关闭定位功能,仅在需要时开启蓝牙。安装手机安全防护软件,经常对手机系统进行扫描。不随意连接不明Wi-Fi、刷不明二维码。保证手机随身携带,建议手机支付客户端与手机绑定,开启实名认证。从官方网站下载手机支付客户端和网上商城 应用。使用手机支付服务前,按要求在手机上安装专门用于安全防范的插件。登录手机支付应用、网上商城时,勿选择"记住密码"选项。通过网络购买商品时,仔细查看登录的网站域名是否正确,谨慎点击商家从即时通讯工具上发送的支付链接。谨慎对待手机上收到的中奖、积分兑换等信息,切勿轻易点击短信中附带的不明网址。资源收集自互联网,仅供用于学习和测试,请勿用于商业。资源如有侵权,请联系站长删除,敬请谅解!

原文
---内容结束💞请分享---
WWW.A5.ORG.CN
👉喜欢💞点赞👍分享🙏
点赞15 分享
相关推荐内容
评论 抢沙发

请登录后发表评论

    请登录后查看评论内容