如何删除REST API链接:在http头文件中? 时间:2015-12-14 作者:Nicolas Guérinet 我想删除自wordpress 4.4以来添加到http头中的“link:”行这是一个curl -I killcandida.org 下面是我要删除的行的输出摘录:Link: <http://killcandida.org/wp-json/>; rel="https://api.w.org/" 请注意,这里我不讨论html头,而是讨论http头。 1 个回复 最合适的回答,由SO网友:jgraup 整理而成 输出由rest\\u output\\u link\\u header()生成。此功能用于两个动作,wp_head 和template_redirect 在里面default-filters.php:@line234. 您可以从这些挂钩中删除函数,以删除要删除的输出。在主题函数中输入以下代码。php来实现所需的结果。remove_action( \'wp_head\', \'rest_output_link_wp_head\', 10); remove_action( \'template_redirect\', \'rest_output_link_header\', 11); rest_output_link_headerRemove WordPress JSON API links in header html这两个动作都定义在ABSPATH/wp-includes/default-filters.php 在下面// REST API filters. 文章导航