apply_filters( 'is_protected_endpoint', bool $is_protected_endpoint )

Filters whether the current request is against a protected endpoint.


Description

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.


Top ↑

Parameters

$is_protected_endpoint bool
Whether the currently requested endpoint is protected.
Default false.

Top ↑

Source

File: wp-includes/load.php. View all references

return (bool) apply_filters( 'is_protected_endpoint', false );


Top ↑

Changelog

Changelog
Version Description
5.2.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.