Tutorials › How to check your WordPress version
How to check your WordPress version
Overview
Steps for checking your WordPress version.
Steps
Method 1 – Check “At a Glance”
- Login to your WordPress website
- Click Dashboard
- Check At a Glance
Method 2 – Check W logo
- Login to your WordPress website
- Click the W logo in the top left-hand corner
- Click About WordPress
Method 3 – Check your website source code
- Open your website
- Right-click and select View page source
- Hold CTRL+F
- Type generator
- Check your generator tag, which will be similar to
<meta name="generator" content="WordPress 5.5.1" />
Method 3 – Check your website login page
- Go to your website’s login page
- Right-click and select View page source
- Hold CTRL+F
- Type ?ver
- Check the version parameter in your CSS and JS files, e.g.
?ver=5.5.1
Method 4 – Check your version.php file
This method assumes you have FTP/SFTP access to your website.
- Access your website via SFTP
- Navigate to your WordPress installation folder
- Open
version.php
- Check the value in the
$wp_version
variable
Method 5 – Using WP CLI
This method assumes you have WP CLI installed.
- Access your website via SSH
- Access your WordPress directory
- Type
wp cli info