How to Center Your WPCodeBox Editor: A...
Optimize your WPCodeBox workflow with this snippet that centers the editor, positions...

WPCodeBox
329

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";
}
?>





