Last active
May 25, 2018 10:17
-
-
Save jimi008/7f74d6161304e194ff86258c9f9c3cb3 to your computer and use it in GitHub Desktop.
Remove woo framework, canvas theme & Revolution slider meta generator from site
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 | |
function remove_revslider_meta_tag() { | |
return ''; | |
} | |
add_filter( 'revslider_meta_generator', 'remove_revslider_meta_tag' ); | |
?> |
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 | |
// Remove the WooThemes version from the html headers | |
function no_woo_version () | |
{ | |
return true; | |
} | |
add_filter ('wf_disable_generator_tags', 'no_woo_version'); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment