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
This WordPress snippet hides the AAM (Advanced Access Manager) metabox, helping you customize and streamline your post editing screen.
<?php
function wpcb_hide_aam_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
remove_meta_box('aam-access-manager', $screen->id, 'advanced');
}
add_action('add_meta_boxes', 'wpcb_hide_aam_metaboxes', 20);