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条回答
闹够了就滚
2楼-- · 2020-02-16 06:44

On the Admin Panel Dashboard, you can find a box called "Right Now". There you can see the version of the WordPress installation. I have seen this result in WordPress 3.2.1. You can also see this in version 3.7.1

WordPress Version 3.7.1

UPDATE:

In WP Version 3.8.3

WordPress Version 3.8.3

In WP Version 3.9.1 Admin Side, You can see the version by clicking the WP logo which is located at the left-top position.

WordPress Version 3.9.1

You can use yoursitename/readme.html

In the WordPress Admin Footer at the Right side, you will see the version info(Version 3.9.1).

In WP 4

You can get the WordPress version using the following code:

<?php bloginfo('version'); ?>

The below file is having all version details

wp-includes/version.php   

Update for WP 4.1.5

In WP 4.1.5, If it was the latest WP version in the footer right part, it will show the version as it is. If not, it will show the latest WP version with the link to update.

Check the below screenshot.

WP 4.1.5

查看更多
SAY GOODBYE
3楼-- · 2020-02-16 06:47

Every WP install has a readme.html file.

So just type www.yourdomain.com/readme.html

查看更多
爷的心禁止访问
4楼-- · 2020-02-16 06:51

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.

查看更多
爷、活的狠高调
5楼-- · 2020-02-16 06:52

Yet another way to find the WordPress version is using WP-CLI: Command line interface for WordPress:

wp core version
查看更多
登录 后发表回答