exit_on_http_head

过滤钩子
apply_filters( 'exit_on_http_head', true )
参数
  • (bool) $exit Whether to exit without generating any content for 'HEAD' requests. Default true.
    Required:
定义位置
相关勾子
rest_jsonp_enabledatom_headopml_headedit_form_topsignup_header
相关方法
wp_get_http_headersrest_output_link_wp_headget_column_headersrest_output_link_headerget_link_to_editregister_column_headers
引入
3.5.0
弃用
-

exit_on_http_head: 当使用HTTP HEAD请求方法访问网站上的一个页面时,这个动作被触发。这可以用来在使用这种请求方法时向网站添加自定义功能。

筛选是否允许‘HEAD’请求生成内容。

通过在加载“HEAD”请求的页面内容之前退出,提供了显著的性能提升。参见#14348。

if ( 'HEAD' === $_SERVER['REQUEST_METHOD'] && apply_filters( 'exit_on_http_head', true ) ) {

常见问题

FAQs
查看更多 >