Recently, one of our users asked us how to check which WordPress version they were using? Sometimes you may need this information to see if your website is up to date. In this article, we will show you how to easily check which WordPress version you are using.
First thing you need to do is login to the admin area of your WordPress site. On the dashboard page, scroll down to the bottom.
You will find ‘Thanks for creating with WordPress’ line. Next to it, you will see WordPress version number.
On the same dashboard page, you can also find your WordPress version number in the At a Glance admin widget.
In the screenshot above, we are using WordPress version 5.6.2. This is the easiest way to find which WordPress version you are using.
If you can’t find WordPress version information in the dashboard, then there are some other ways to find it.
To make it easy, we have created a video tutorial on how to check which WordPress version you are using.
However if you just want to follow text-instructions, then you can follow our step by step tutorial on how to check which WordPress version you are using.
How to Find Out WordPress Version of Almost Any Website
In some cases you may not be able to see the version information in WordPress admin area.
- Your developer may have disabled version information in admin area.
- You may not have Administrator access to admin area
- You are simply trying to find out WordPress version of a site you don’t own or control.
We are assuming that you do not have FTP access to a website, and you cannot log in WordPress admin area.
Please note that these methods may not work on many websites. Some security conscious site owners hide this information to protect their website against common threats.
Having said that, here are some of the methods that you can try to find out the WordPress version of a website.
Method 1: Looking for Generator Tag in Source Code
Simply visit the website in a browser window. Right click on any empty area on the screen and select View Page Source from browser menu.
This will load the site’s source code in the browser window. Press CTRL+F and then search for ‘generator’.
If it is a WordPress site, and if the site owner hasn’t disabled version information, then you will be able to see a tag like this:
<meta name="generator" content="WordPress 4.4.2" />
This meta tag is used by WordPress to show that a site is created using WordPress. Many site owners remove WordPress version number, so this tag may not show up on some WordPress sites.
Method 2: Viewing readme.html File
Each WordPress installation adds a readme.html file in the website’s root folder. Unless the site owner has disabled access to this file, you can access it by adding readme.html at the end of the site’s URL.
http://www.example.com/readme.html
The readme file will show you the WordPress version on top.
This method may not work if a site is protected by Sucuri firewall.
Method 3: Viewing Source Code of WordPress Login Screen
WordPress login screen also contains information in the source code that would reveal the WordPress version of a website.
However, this method would only work if the WordPress site owner hasn’t disabled access to login page or admin area via .htaccess.
Simply add wp-login.php to a WordPress site’s URL.
http://www.example.com/wp-login.php
When the page loads, right click on any empty area on the screen. Select View Page Source from the browser menu.
This will open the login screen’s source code. Press CTRL+F and search for ‘ver=’. You will be able to notice the version parameter added to stylesheets. It would look like this:
<link rel='stylesheet' id='buttons-css' href='https://www.example.com/wp-includes/css/buttons.min.css?ver=4.4.2' type='text/css' media='all' /> <link rel='stylesheet' id='dashicons-css' href='https://www.example.com/wp-includes/css/dashicons.min.css?ver=4.4.2' type='text/css' media='all' /> <link rel='stylesheet' id='login-css' href='https://www.example.com/wp-admin/css/login.min.css?ver=4.4.2' type='text/css' media='all' />
Find out Which Plugin Version You are Using
The easiest way to find out which plugin version you are using is by visiting the plugins page in WordPress admin area.
There you will be able to see the plugin version below the plugin name for each plugin installed on your WordPress site.
However, if you don’t have access to the admin area, then chances of finding out a plugin’s version information are slim.
Some plugins like All in One SEO automatically add version information in a site’s source code. You can visit a website, right click in an empty area and then select View page source from browser menu.
The tag added by AIOSEO would look like this:
Other plugins load CSS or JavaScript files and sometimes they use plugin’s version number appended to script or stylesheet URLs like this:
This is not a reliable method to find out a plugin’s version number. For example, the version number could be the version number of jQuery script a plugin is loading.
Another sneaky way to find out plugin version is by visiting the plugin’s readme file on a website. If you know what plugin’s directory name would be then you can try accessing the readme.txt file.
For example, if a site has the free version of WPForms installed, then you can access its readme file like this:
http://www.example.com/wp-content/plugins/wpforms-lite/readme.txt
This method may not work if a site is protected by Sucuri firewall.
That’s all, we hope this article helped you learn how to check which WordPress version you are using. You may also want to see our expert tips and hacks to protect your WordPress admin area.
If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.
Bill Murray says
I’m working on a client’s Multisite and that information is not in any of the areas it would normally be. Where else can I find it?
WPBeginner Support says
You would want to check in the network admin area for a multisite network to see the WordPress version.
Admin
Olga says
thank you! it was very helpful!
WPBeginner Support says
You’re welcome, glad our guide could be helpful
Admin
Vblk says
In the dashboard, you can click on the W logo at the top left of the screen. Many times dashboard are customized and that’s why, sometimes, you can’t see your version in it. That being said, it is recommended to use a security plugin to prevent the version of your WordPress site from being displayed for visitors. No one should be able to read your WordPress version in the source code of the pages. The file readme.html is more secure now, it doesn’t show your WordPress version. Finally, to be sure to find the version you are using, with FTP, just look in folder wp-includes/version.php.
WPBeginner Support says
Thank you for sharing your insights on this post
Admin
Jon says
Unfortunately, this is inaccurate. I just had a look at my own dashboard and no, you cannot see what version you are using by scrolling to the bottom as instructed.
Dominique says
Hello,
I am trying to detect the WordPress version using a script or SCCM…
Any idea?
Thanks,
Dom
Seibem Guite says
We are using godaddy website builder with wordpress but all the tricks are not working please give me advice.. Thanks
Regard
Seibem Guite
Josiah Altschuler says
You can also just hover over the WordPress logo in the top left of the admin area and click on “About WordPress.”
John says
Thank you sir.
Peter says
Good to know, thanks.
Btw, I thought at some point you did a post about how to hide the fact that a site is a wordpress one somehow. Was I dreaming, or is there a way to do that? Just did a search on your site but couldn’t find it.
Cheers.
deepak says
There are many ways to find out the version:
(1) in the dashboard.
(2) in the readme.html file located in the root of your WP installation
(3) in the version.php located here: /wp-includes/version.php
Here is a chrome plugin who shows the wordpress version
deepak says
There is a way to hide that your site using wordpress. For this you need some web designing coding knowledge for making some changes in wordpress and hide your sites details about wordpress.
B Fuller says
Looking at the admin footer doesn’t help if you are not on a current release:
The /readme.html file is the easiest way for sure.