filtrod 5.2.0
is_protected_endpoint
Opis — z kodu źródłowego
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.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$is_protected_endpoint | bool | Whether the currently requested endpoint is protected. Default false. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'is_protected_endpoint', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}
// rejestracja funkcji zwrotnej
add_filter( 'is_protected_endpoint', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}Popularne w tej kategorii