Skip to content

Instantly share code, notes, and snippets.

@RhythmShahriar
Created October 17, 2013 15:23
Show Gist options
  • Select an option

  • Save RhythmShahriar/7026896 to your computer and use it in GitHub Desktop.

Select an option

Save RhythmShahriar/7026896 to your computer and use it in GitHub Desktop.
<?php
/**-------------------------------------------
* @package Code Snippets
* @link http://rhythmshahriar.com/code/
* @author Rhythm <[email protected]>
* @copyright Copyright (c) 2013, Rhythm Shahriar
-------------------------------------------------*/
// Use this code to remove wp generator meta
remove_action('wp_head', 'wp_generator');
// Use this code to remove wp version from rss
function rs_remove_wp_version() { return ''; }
add_filter('the_generator', 'rs_remove_wp_version');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment