<?php
/*
Plugin Name: Free Gen
Description: WordPress includes generator tags in all it's outputs; feeds, opml, themes, etc.  This plugin removes the generator tags altogether.
Version: 1.0
Author: Christian Höltje
Author URI: http://docwhat.gerf.org/

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 3 of the License.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
*/

function wp_free_gen_filter ( $content ) {
    return '';
}
add_filter('wp_get_generator', 'wp_free_gen_filter');


?>

