Home  >  Article  >  CMS Tutorial  >  How to check wordpress version

How to check wordpress version

藏色散人
藏色散人Original
2019-07-11 09:44:3811138browse

How to check wordpress version

How to check the wordpress version

For software users, it is very useful to know the version number of the software they are using. necessary. For example, WordPress software, as an ordinary user and blogging webmaster, usually knows the latest version, which is the safest version and has more powerful functions. It is even more important for WordPress theme developers. Here are four ways to get the version number of WordPress.

The first step: Pass the file Readme.html

How to check wordpress version

The wordpress website will have this file by default. This file is an introduction to wordpress. For example, for this site (also built with the powerful wordpress), you can use /Readme.html of this site to check the version number of this site's wordpress. However, this method is not very accurate because there are only major versions and minor versions. For example, the version is 4.7, not 4.7.x. Of course the advantage is that it is more convenient.

Second move: Through the website management backend

There are multiple places in the WordPress backend where you can view the software version number. For example, you can view it in the lower right corner of the website backend. This is the prepared version number.

The third method: Obtain the version number through code

This method is of great significance to wordpress theme developers and plug-in developers. I won’t go into details here. Give several examples of obtained versions.

Through global variables

echo $GLOBALS['wp_version']

Through functions

echo get_bloginfo('version')

Through global variables

global $wp_version;
echo $wp_version;

You will have a better understanding of the current version of wordrpess you are using The function of the version, whether it needs to be upgraded and other information.

The fourth trick: After opening the wordrpess website, view the source code. It should have a meta tag, such as:

<meta name="generator" content="WordPress 2.8.4" />

For more WordPress technical articles, please visit the WordPress Tutorial column!

The above is the detailed content of How to check wordpress version. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn