For WordPress v2.4 I have introduced some changes to the way in which all of the generator tags present in the output from WordPress are generated.
The generator tags/comments were previously hard coded in the following items: Theme’s header.php, all of the feed generation files, the export generation process. I have now centralised the generation process into three functions in wp-includes/general-template.php
: get_the_generator
, the_generator
and wp_generator
. The new functions provide an array of filters to enable you to modify the generator output or remove it completely if you so wish. The standard WordPress xhtml generator tag is now generated on the wp_head
hook rather than needing to be hard coded into the themes files – this does mean that themes with a generator tag in them will now have two but it does reduce the number of things a theme author need to remember to include in the theme files.
For example, if you are creating a HTML theme rather than an XHTML theme then you will want to add the following to your themes functions.php
file which will ensure that the default generator tag output by WordPress on the wp_head
hook is the HTML one:
function i_want_html_generator() { return 'html'; } add_filter('wp_generator_type','i_want_html_generator');
Another use of the newly available filters is, for example, to enable you to hide the fact that your site is running WordPress or to mask the version of WordPress that you are running. In order to do this the new functions have a variety of filters available. As we have already seen there is a filter to enable you to determine the type of generator output in your theme, the other filters available are: the_generator
, get_the_generator_$type
where $type
is the name of the specific generator type you want to filter/hide. You can hide all of the generators on your blog with one simple plugin containing the following code:
function i_want_no_generators() { return ''; } add_filter('the_generator','i_want_no_generators');
If you want to read more about the reasons behind these changes then please see the related trac tickets, #4803 and #5085, or read the code itself in the changeset [6195].
Pingback: WordPress weekly digest 1st October to 7th October 2007 « westi on wordpress
Pingback: WordPress Wednesday News: WordCamp Israel Full, Tag Frustration, Security Tips and Plugins, Drupal, wPhone, WP-Cache, Akismet, and Mailing Lists : The Blog Herald
Pingback: WordPress 2.5 Plugin Keeps the Version out of Source. | Just Thinkin'
Pingback: An Ideal WordPress User · plaintxt.org
If I remember correctly, you can also do:
remove_action('wp_head', 'the_generator');
Not that it really matters.
@Jeremy: Indeed you can. The point behind the filter method is this also removes the generators from all the other places as well – like the feeds.
Pingback: Remove Wordpress version information from your blog and feeds | Antezeta Web Marketing
Pingback: 9 SEO Security Tips for Wordpress to avoid being banned in Google | Antezeta Web Marketing
Pingback: 9 Suggerimenti per migliorare la sicurezza di Wordpress ed evitare una penale da Google | Antezeta Web Marketing
Pingback: meta generator mit WordPress-Versionsnummer » Beitrag » WordPress Magazin