Find out which version of WordPress a blog is using (from outside)

I want to know if there’s a way, not having access to the administration of a blog, to know which version of WP is running under the hood.

Related posts

Leave a Reply

5 comments

  1. right click on the page and go to View Page Source and check for this meta tag

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

    the content value defines your wordpress veersion

  2. WordPress blogs are typically configured to present the version in a meta header, like follows:

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

    WordPress sites hosted at wordpress.com have:

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

    …and I don’t see any version information in their headers.