Skip to content

Instantly share code, notes, and snippets.

@berkaygeldec
Created June 18, 2019 16:42
Show Gist options
  • Select an option

  • Save berkaygeldec/e5485ec821e0fad30692ac8b4c53f5c6 to your computer and use it in GitHub Desktop.

Select an option

Save berkaygeldec/e5485ec821e0fad30692ac8b4c53f5c6 to your computer and use it in GitHub Desktop.
// 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