How to Change the WordPress Login Page...
This snippet allows you to easily change the URL of the logo on your WordPress login ...

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