Skip to content

Instantly share code, notes, and snippets.

@jimi008
Last active May 25, 2018 10:17
Show Gist options
  • Save jimi008/7f74d6161304e194ff86258c9f9c3cb3 to your computer and use it in GitHub Desktop.
Save jimi008/7f74d6161304e194ff86258c9f9c3cb3 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