Remove the Wordpress Meta Tag from your Blog
Whenever you create a new Wordpress Blog a Meta tag is automatically added to every page. This can be a hackers paradise as they can hunt around the web for Wordpress Sites and then target them in their next attack on the web!
Now, this doesn’t mean that your site won’t get hacked but it decreases your vulnerability to those attacks. The easiest way is to download this small plugin and upload to your Wordpress Plugin Directory. You’ll then need to activate the plugin via the Wordpress Admin Panel.
Or, you can simply add the following code
function no_generator() { return ”; }
add_filter( ‘the_generator’, ‘no_generator’ );
to your Wordpress Theme’s “functions.php” file.
Related posts:
- Secure your Wordpress Blog
- Web Browsing Tips #1: Find in Page
- 10 Tips to Clean, Optimize and Speed up your Wordpress Site
- Should you remove the border on clicked links
- Useful Wordpress Snippets

