Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created August 13, 2018 14:01
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/6b5f37835ed0232403baa1cb6c0d9f4c to your computer and use it in GitHub Desktop.
Save jchristopher/6b5f37835ed0232403baa1cb6c0d9f4c to your computer and use it in GitHub Desktop.
Override locale as far as SearchWP is concerned
<?php
// Override locale as far as SearchWP is concerned
add_filter( 'searchwp_locale_override', function( $locale ) {
return 'en_US';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment