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

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

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

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

这些加载项目很多是没有必要加载的,那么我们如何将这些多余的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);//移除文章和评论feedremove_action('wp_head','feed_links_extra',3);//移除分类等feedremove_action('wp_head','rest_output_link_wp_head',10);//移除wp-jsonremove_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=canonicalremove_action('wp_head','wp_shortlink_wp_head',10,0);//rel=shortlink//remove_action('wp_head','wp_print_styles',8);//移除后台插件加载cssremove_action('wp_head','print_emoji_detection_script',7);//移除emoji载入jsremove_action('admin_print_scripts','print_emoji_detection_script');//emoji载入jsremove_action('wp_print_styles','print_emoji_styles');//移除emoji载入cssremove_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头部是不是少了很多多余加载项信息?

产品猿社区致力收录更多优质的商业产品,给服务商以及软件采购客户提供更多优质的软件产品,帮助开发者变现来实现多方共赢;

日常运营的过程中我们难免会遇到各种版权纠纷等问题,如果您在社区内发现有您的产品未经您授权而被用户提供下载或使用,您可按照我们投诉流程处理,点我投诉

本文来自用户发布投稿,不代表产品猿立场 ;若对此文有疑问或内容有严重错误,可联系平台客服反馈;

部分产品是用户投稿,可能本文没有提供官方下下载地址或教程,若您看到的内容没有下载入口,您可以在我们产品园商城搜索看开发者是否有发布商品;若您是开发者,也诚邀您入驻商城平台发布的产品,地址:点我进入

如若转载,请注明出处:https://www.chanpinyuan.cn/43127.html;
(0)
上一篇 2023年5月23日 下午4:16
下一篇 2023年8月17日 下午4:12

相关推荐

发表回复

登录后才能评论
分享本页
返回顶部