Usage
add_filter( 'application_password_is_api_request', 'your_callback_function', 10, 1 );Filter Callback:
function your_callback_function( $is_api_request ) {
// Your code here
return $is_api_request;
}Parameters
$is_api_requestParameter 1
🔄 Filter Hook
Filter hooks allow you to modify data before it is saved to the database or displayed on the screen. Filters must return a value.