Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I find out what version of WordPress is running?

Tags:

wordpress

I have just taken over someone's hosted WordPress site. How do I find out what version he is running?

like image 933
leora Avatar asked Oct 09 '22 20:10

leora


People also ask

How can I tell when my WordPress was updated?

Simply login to your WordPress admin account and go to Dashboard » Updates page. On this page, you'll see the timestamp when your WordPress site last checked for updates.


1 Answers

Look in wp-includes/version.php

/**
 * The WordPress version string
 *
 * @global string $wp_version
 */
$wp_version = '2.8.4';
like image 257
Paul Dixon Avatar answered Oct 12 '22 10:10

Paul Dixon