Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created August 13, 2018 14:05
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/081a360794dce9326ef8ce3665b10e9d to your computer and use it in GitHub Desktop.
Save jchristopher/081a360794dce9326ef8ce3665b10e9d to your computer and use it in GitHub Desktop.
Decrease the file size content threshold in SearchWP
<?php
// Decrease the file size content threshold in SearchWP
apply_filters( 'searchwp_file_content_limit', function( $limit ) {
return 500000;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment