Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created August 13, 2018 14:01
Embed
What would you like to do?
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