Find out which version of WordPress your blog uses (externally)

I want to know if there is a way, without having access to the blog administration, to find out which version of WP is working under the hood.

+3
source share
5 answers

Wordpress blogs are typically configured to present a version in the title meta, for example:

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

Wordpress sites hosted on wordpress.com have:

<meta name="generator" content="WordPress.com" />

... and I don't see any version information in my headers.

+3
source

right click on the page and go to View Page Sourceand check this meta tag

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

the value of the content defines your wordpress variable

+4
source

Blind-Elephant -. webapp . .

+3

, .

:

You can also view the source code of the blog and often, but not always, see the version there.

Not sure if you need to log in or not to get this. Give it a try.

0
source

This site will check if Wordpress is installed. He will also provide you with a version number: - [ http://www.isitwp.com/]

Hope this helps.

0
source

All Articles