Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bewho/9e7bf0ca1ffd223a1d4220fbd0b9f20e to your computer and use it in GitHub Desktop.
Save bewho/9e7bf0ca1ffd223a1d4220fbd0b9f20e to your computer and use it in GitHub Desktop.
Remove woo framework, canvas theme & Revolution slider meta generator from site
<?php
function remove_revslider_meta_tag() {
return '';
}
add_filter( 'revslider_meta_generator', 'remove_revslider_meta_tag' );
?>
<?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