Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created January 22, 2015 01:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jchristopher/0f3a3ea5ec926cca1fe4 to your computer and use it in GitHub Desktop.
Save jchristopher/0f3a3ea5ec926cca1fe4 to your computer and use it in GitHub Desktop.
Modify the HTTP request timeout used by SearchWP's loopback requests
<?php
function my_searchwp_timeout( $timeout ) {
// 1s timeout
return 1;
}
add_filter( 'searchwp_timeout', 'my_searchwp_timeout' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment