PDA

View Full Version : Check WordPress Version From the Backend Files



aaronbrad
04-11-2016, 05:40 AM
Version of Wordpress installation is in the file version.php

General path is <WordPress Directory>/wp-includes/version.php

You will see lines as below


$wp_version = '4.3';
$wp_db_version = 30655;
$required_php_version = '5.4';
$required_mysql_version = '5.2';

Here we have information about the WordPress version required PHP and MySQL version for the WordPress Installation.

learn2do
04-25-2016, 07:39 AM
Wow, interesting. But that's little complicated, we can see the version right on the bottom of Wordpress Dashboard :)

Alanah_Rae
04-28-2016, 12:45 PM
Version of Wordpress installation is in the file version.php

General path is <WordPress Directory>/wp-includes/version.php

You will see lines as below


$wp_version = '4.3';
$wp_db_version = 30655;
$required_php_version = '5.4';
$required_mysql_version = '5.2';

Here we have information about the WordPress version required PHP and MySQL version for the WordPress Installation.

Thanks for the information sharing with us !!