is_protected_endpoint

過濾鉤子
apply_filters( 'is_protected_endpoint', false )
引數
  • (bool) $is_protected_endpoint Whether the currently requested endpoint is protected. Default false.
    Required:
定義位置
相關勾子
is_protected_metaoembed_endpoint_urlwp_is_site_protected_by_basic_authwp_protected_ajax_actionspre_schedule_event
相關方法
is_protected_endpointis_protected_metaadd_rewrite_endpointis_protected_ajax_action_deprecated_argumentget_oembed_endpoint_url
引入
5.2.0
棄用
-

is_protected_endpoint – 這個函式返回一個布林值,表示當前端點是否受到保護。一個受保護的端點是一個需要認證才能訪問其內容的端點: 這個函式不是一個鉤子或動作,但它是一個在WordPress程式碼中直接呼叫的函式。

過濾當前請求是否是針對受保護的端點。

這個過濾器只有在請求的端點還沒有被WordPress核心保護的情況下才會被觸發。因此,它只允許在管理後臺、登入頁面和受保護的Ajax動作之外提供更多受保護的端點。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
return (bool) apply_filters( 'is_protected_endpoint', false );
return (bool) apply_filters( 'is_protected_endpoint', false );
return (bool) apply_filters( 'is_protected_endpoint', false );

常見問題

FAQs
檢視更多 >