is_protected_endpoint
Filters whether the current request is against a protected endpoint.
This filter is only fired when an endpoint is requested which is not already protected by WordPress core. As such, it exclusively allows providing further protected endpoints in addition to the admin backend, login pages and protected Ajax actions.
Usage
add_filter( 'is_protected_endpoint', 'wp_kama_is_protected_endpoint_filter' ); /** * Function for `is_protected_endpoint` filter-hook. * * @param bool $is_protected_endpoint Whether the currently requested endpoint is protected. * * @return bool */ function wp_kama_is_protected_endpoint_filter( $is_protected_endpoint ){ // filter... return $is_protected_endpoint; }
- $is_protected_endpoint(true|false)
- Whether the currently requested endpoint is protected.
Default: false
Changelog
Since 5.2.0 | Introduced. |
Where the hook is called
is_protected_endpoint
wp-includes/load.php 1180
return (bool) apply_filters( 'is_protected_endpoint', false );