Created
January 15, 2016 02:19
-
-
Save jchristopher/6fb39ef9b867022feb9f to your computer and use it in GitHub Desktop.
Programmatically tell SearchWP your license key without having to enter it into the license key field
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'searchwp_license_key', function(){ | |
return 'MJqNKfmhT3gVG6kpeyjXvM'; // your license key (found on your payment receipt) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment