You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
github-actions[bot] edited this page Jul 1, 2026
·
2 revisions
Filters the timeout for events API requests.
Auto-generated Example
/** * Filters the timeout for events API requests. * * @param int $timeout * @return int The filtered value. */functionmy_microsub_events_api_timeout_callback( int$timeout ) {
// Your code here.return$timeout;
}
add_filter( 'microsub_events_api_timeout', 'my_microsub_events_api_timeout_callback' );