Skip to content

Instantly share code, notes, and snippets.

@despecial
Created January 30, 2018 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save despecial/f452307f9816c8de1a1fc1de32a8521d to your computer and use it in GitHub Desktop.
Save despecial/f452307f9816c8de1a1fc1de32a8521d to your computer and use it in GitHub Desktop.
remove Slider Revolution generator meta tag
/* add to functions.php in theme folder */
// Remove Slider Revolution meta tag
add_filter('wp_head', 'remove_revslider_meta_tag',0);
function remove_revslider_meta_tag() {
remove_action('wp_head', 'ls_meta_generator', 9);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment