Here’s a handy one-liner to find all instances of WordPress on a server as well as their version numbers:
|
1 2 3 4 |
find . -name 'version.php' -path '*wp-includes/*' -print \ -exec grep '$wp_version =' {} \; -exec echo '' \; |
This is not original, I found it here.




