Skip to content

Instantly share code, notes, and snippets.

@octalmage
Created July 14, 2016 18:38
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save octalmage/07f26e0d1f25cea9a8ca92ebc67a3a14 to your computer and use it in GitHub Desktop.
PHP Compatibility Custom Timeout
<?php
/*
Plugin Name: PHP Compatibility Custom Timeout
*/
function custom_timeout( $timeout ) {
return 0;
}
add_filter( 'wpephpcompat_scan_timeout', 'custom_timeout', 10 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment