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。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
if ( 'HEAD' === $_SERVER['REQUEST_METHOD'] && apply_filters( 'exit_on_http_head', true ) ) {
if ( 'HEAD' === $_SERVER['REQUEST_METHOD'] && apply_filters( 'exit_on_http_head', true ) ) {
if ( 'HEAD' === $_SERVER['REQUEST_METHOD'] && apply_filters( 'exit_on_http_head', true ) ) {

常見問題

FAQs
檢視更多 >