Forked from jimi008/remove_revslider_meta_generator.php
Created
May 25, 2018 10:17
-
-
Save bewho/9e7bf0ca1ffd223a1d4220fbd0b9f20e 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