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

WPCodeBox
130
This WordPress snippet helps you easily list all loaded shortcodes. Run it in manual mode and view the output in the editor’s output pane.
<?php
// This snippet should run in "Manual mode"
global $shortcode_tags;
ksort( $shortcode_tags );
$shortcode_output = "<ul>";
foreach ( $shortcode_tags as $shortcode => $value ) {
$shortcode_output = $shortcode_output . '<li>[' . $shortcode . ']</li>';
}
$shortcode_output = $shortcode_output . "</ul>";
echo "All the loaded shortcodes are: <br/>===================== <br/>";
echo $shortcode_output;