Last active
December 7, 2017 11:00
-
-
Save JulioPotier/bbaaed82df99ea90e2224cde09e40963 to your computer and use it in GitHub Desktop.
SecuPress Pro Hide Licence Keys
This file contains 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 | |
/* | |
Plugin Name: Hide Licence Keys | |
*/ | |
add_filter( 'secupress.global_settings.modules', 'secupress_hide_licence_keys' ); | |
function secupress_hide_licence_keys( $modules ) { | |
unset( $modules[0] ); | |
return $modules; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment