WordPress终极优化指南-删除rest API链接
WordPress rest API用于与其他应用程序通信。它通常用于开发一些大多数网站不会使用的小工具。你可以让他瘫痪。
网站的每个页面都有指向此API的链接。如下
<link rel='http://api.w.org/' href='http://domain.com/wp-json/' />
使用下面代码来禁用:
add_action('after_setup_theme', function(){ remove_action( 'wp_head', 'rest_output_link_wp_head', 10 ); });
写入functions.php保存即可