Created
June 18, 2019 16:42
-
-
Save berkaygeldec/e5485ec821e0fad30692ac8b4c53f5c6 to your computer and use it in GitHub Desktop.
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
| // Hide wordpress version from generator meta tag | |
| remove_action('wp_head', 'wp_generator'); | |
| // Hide wordpress version from the RSS feeds | |
| function remove_wpversion_rss() { | |
| return''; | |
| } | |
| add_filter('the_generator','remove_wpversion_rss'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment