Manipulate the arguments used in SearchWP's loopback calls
This file contains 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 | |
function my_searchwp_indexer_loopback_args( $args ) { | |
// $args are in the format of http://codex.wordpress.org/Function_Reference/wp_remote_post | |
// change the timeout | |
$args['timeout'] = 0.01; | |
return $args; | |
} | |
add_filter( 'searchwp_indexer_loopback_args', 'my_searchwp_indexer_loopback_args' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment