I have just taken over someone's hosted WordPress site. How do I find out what version he is running?
相关问题
- Display product ACF field value in Woocommerce tra
- Adding a custom button after add to cart button in
- How to add a “active” class to a carousel first el
- Setting custom order statuses as valid for payment
- change the font size in tag cloud
相关文章
- wordpress新增页面如何个性化设置
- select query in wordpress
- Get WooCommerce featured products in a WP_Query
- Woocommerce update shipping methods in checkout vi
- Change order status just after payment in WooComme
- Publishing or uploading failed. Error message: “Th
- Facebook Login With WP JWT Auth
- Wordpress development process
From experience with WordPress 3.8.3:
(1) Login as admin (2) Click on the W menu in the upper left corner (3) Click on menu item "About WordPress".
This will take you to .../wp-admin/about.php
There it will say "Welcome to WordPress 3.8.3"
For any wordpress site, you can go to http://example.com/feed and check the following tag in the xml file to see the version number:
Here, 3.7 is the version installed.
If you came here to find out about how to check WordPress version programmatically, then you can do it with the following code.
Cheers!
Because I can not comment to @Michelle 's answer, I post my trick here.
Instead of checking version on meta tag that usually is removed by customized theme.
Check the
rss feed
by append/feed
to almost of any link from that site, then search for some keywords (wordpress
,generator
), you will have better chance.can find in Dashboard
At a Glance
boxif that box is hidden - click on
screen options
at top-right corner and check onAt a Glance
I know I'm super late regarding this topic but there's this easy to use library where you can easily get the version numbers of Worpress, PHP, Apache, and MySQL, all-in-one.
It is called the Wordpress Environment (W18T) library
Output
I hope it helps.