Created
January 30, 2018 13:57
-
-
Save despecial/f452307f9816c8de1a1fc1de32a8521d to your computer and use it in GitHub Desktop.
remove Slider Revolution generator 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
/* 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