I have just taken over someone's hosted Wordpress site. How do I find out what version he is running?
+7
A:
Look in wp-includes/version.php
/**
* The WordPress version string
*
* @global string $wp_version
*/
$wp_version = '2.8.4';
Paul Dixon
2009-09-07 17:24:32
+5
A:
Unless he edited some code to delete this, you should be able to view source on the site and look for this meta tag:
<meta name="generator" content="WordPress 2.7.1" />
That will give you the version.
McGirl
2009-09-07 17:24:39
A:
Open the blog, Check source once the blog is open. It should have a meta tag like:
<meta name="generator" content="WordPress 2.8.4" />
Sathya
2009-09-07 17:25:05
i dont see this in my page source
ooo
2009-09-07 17:49:18
[OT] Um, same answers, one gets a +4 while mine's a negative ? - The owner probably edited it out.
Sathya
2009-09-07 17:55:05
+3
A:
On the Admin panel in the footer you should see the words "Wordpress x.x" where x.x is your version number :)
Alternatively you can echo out the WP_VERSION constant in your script, it's up to you. The former is a lot quicker and easier.
Jamie Rumbelow
2009-09-07 17:25:07