How to Remove Your WordPress Version N...
Enhance your WordPress security by learning how to effectively hide your WordPress ve...

WPCodeBox
599
This useful snippet provides essential debugging information, including WordPress, PHP, and plugin versions. Easily obtain compatibility details and send to support by saving it as a manually running snippet for output in WPCodeBox.
<?php
$plugins = get_plugins();
global $wp_version;
echo "PHP Version: " . phpversion() . "n";
echo "WordPress Version: " . $wp_version . "n";
echo "nnPlugin Name -> Plugin Versionnn";
foreach( $plugins as $plugin ) {
echo "$plugin[Name] -> $plugin[Version] n";
}
?>





