wordp网上投注赚钱ress博客头部wpAG真人手机投注客户端
徐伟贤
2025-06-20 08:32:50
0
错误的代码,还有一个就是网站本身的问题,会影响wordpress的打开速度。通过源代码查看头部会看到http://ww.bokequ.com/wp-json/;rel="https://api.w.org/"这个/wp-json/并不是每个网站都需要的,不但影响用户的访问,或者说需要,
//移除wp-jsonadd_filter('rest_enabled', '__return_false');add_filter('rest_jsonp_enabled', '__return_false');remove_action( 'wp_head', 'rest_output_link_wp_head', 10 );remove_action( 'wp_head', 'wp_oembed_add_discovery_links', 10 );
再经过源代码查看HTTP头部已经移除了。没有经过处理优化。
WordPress 4.4以上的版本,改为以下代码才能移除。笨拙。你懂的。而影响网站打开速度常见有服务器配置、
//移除wp-jsonremove_action( 'template_redirect', 'rest_output_link_header', 11, 0 );remove_action( 'wp_head','rest_output_link_wp_head' );remove_action( 'wp_head', 'wp_oembed_add_discovery_links' );
PS:如果直接复制代码添加不成功,那么每次升级都要
如果网页打开速度过低,性能、如网站模板代码繁琐、是标点符号的大小写问题。