Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created March 9, 2018 14:04
Embed
What would you like to do?
Tell SearchWP to ignore engine settings when indexing
<?php
// Tell SearchWP to ignore limiters/exclusions as defined in engine settings when indexing
// Note: this will very likely cause your index to grow in size
add_filter( 'searchwp_indexer_apply_engines_rules', '__return_false' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment