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

WPCodeBox
39
Enhance your WordPress admin bar by adding a WPCodeBox link. This snippet conveniently places a “[WPCB]” shortcut in your top admin bar, opening in a new browser tab for quick access to WPCodeBox.
<?php
//This snippet will add WPCodeBox (abbreviated as [WPCB]) to the WordPress top admin bar
add_action( 'admin_bar_menu', function($wp_admin_bar2) {
$wp_admin_bar2->add_node( array(
'id' => 'wpcodebox_adminbar',
'title' => '[WPCB]',
'href' => admin_url( 'admin.php?page=wpcb_menu_page_php' ),
'meta' => array( 'target'=>'_blank' )
) );
}, 999);