Created
July 14, 2016 18:38
-
-
Save octalmage/07f26e0d1f25cea9a8ca92ebc67a3a14 to your computer and use it in GitHub Desktop.
PHP Compatibility Custom Timeout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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