Are you having issues on removing the wordpress version number on your website?
Many SEO gurrus love to remove the wordpress version number on their websites to prevent attackers from having free hands on their websites.
So we will show you the right way to remove wordpress version on your website
What is WordPress Version Number?
Contents
WordPress leaves its footprints on your site for the sake of tracking. That is how we know that WordPress is the top website builder in the world. so it shows others or users which wordpress you are using.
Why Remove WordPress Version Number?
Sometimes this footprint might be a security leak on your site if you are not running the most updated version of WordPress. It provides the hacker with useful information by telling them which version you are running.
We recommend using the latest version of WordPress on all your websites so you don’t have to worry about this. However, if for some reason you are running an older version of WordPress, then you should definitely follow this tutorial.
It is quite difficult to remove all traces of which WordPress version you are using on your website. A sophisticated attack may still be able to find that information.
However, it will prevent automatic scanners and other less sophisticated attempts from guessing your WordPress version.
Remove WordPress Version Information Manually
This method requires you to add code to your WordPress website. If you haven’t done this before, then see our guide on how to copy and paste code snippets in WordPress.
Now, many websites will recommend you to edit your theme’s header.php file and get rid of the following line of code:
This method doesn’t work as a new theme update will automatically replace the old template with the new file.
Another commonly recommended, but inefficient method is to put this code in your theme’s functions.php or site-specific plugin:
remove_action('wp_head', 'wp_generator');
This will only remove the information from the WordPress header. The version number will still be visible in your website’s RSS feeds.
The right way to remove WordPress version information is by disabling the function responsible for displaying it.
In order for you to completely remove your WordPress version number from both your head file and RSS feeds, you will need to add the following code to a site-specific plugin or code snippets plugin.
function wpressbeginner_remove_version() {
return '';
}
add_filter('the_generator', 'wpressbeginner_remove_version');
By adding this code, you will remove the WordPress version number from WordPress RSS feeds and your website’s head section.
Remove WordPress Version Number using Sucuri
Using plugins is very easy and we recommend it for WordPress Users.
we recommend using Sucuri because it automatically hides WordPress version information and offers other more advanced security features.
Simply install and activate the Sucuri plugin. For more details, see our step by step guide on how to install a WordPress plugin.
Upon activation, the plugin will automatically hide WordPress version information. You can verify it by visiting Sucuri Security » Settings and switching to the Hardening tab.
Is it Possible to Hide WordPress Version?
WordPress may still add the version information in various other places throughout your website. Removing all instances of WordPress version information can be time-consuming, complicated, and may not always work.
From a security perspective, removing the obvious generator tags can protect you from some very common attacks.
So if someone is determined to break into your website, then hiding your WordPress version number does little to stop this.
You need to implement a proper WordPress security setup in place to make your website more secure. This adds layers of security around your website making it harder to hack into.
We hope this article helped you learn how to easily hide WordPress version number from your website. If you liked this article, then please like our page on Facebook so we can get you more information about it.