How do I find out what version of WordPress is run

2020-02-16 05:51发布

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

标签: wordpress
16条回答
你好瞎i
2楼-- · 2020-02-16 06:37

Just go to follow link domain.com/wp-admin/about.php

查看更多
欢心
3楼-- · 2020-02-16 06:41

Look in wp-includes/version.php

/**
 * The WordPress version string
 *
 * @global string $wp_version
 */
$wp_version = '2.8.4';
查看更多
Fickle 薄情
4楼-- · 2020-02-16 06:41

The easiest way would be to see the readme file that ships with every WordPress version itself.

http://example.com/readme.html

查看更多
再贱就再见
5楼-- · 2020-02-16 06:41

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" />
查看更多
女痞
6楼-- · 2020-02-16 06:42

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.

查看更多
不美不萌又怎样
7楼-- · 2020-02-16 06:43

In dashboard you can see running word press version at "At a Glance"

查看更多
登录 后发表回答