Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created January 25, 2021 13:21
Show Gist options
  • Save jchristopher/323f2248ee3732f190cb6712059f0757 to your computer and use it in GitHub Desktop.
Save jchristopher/323f2248ee3732f190cb6712059f0757 to your computer and use it in GitHub Desktop.
Increase SearchWP's load maximum threshold
<?php
// Increase SearchWP's load maximum threshold to allow loads up to 4 instead of 2.
// @link https://searchwp.com/documentation/hooks/searchwp-background_process-load_maximum/
add_filter( 'searchwp\background_process\load_maximum', function( $max ) {
return 4;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment