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 efficiently disables Gutenberg, allowing you to use the Classic Editor without installing additional plugins.
<?php
// Disable Gutenberg for posts
add_filter('use_block_editor_for_post', '__return_false', 10);
// Disable Gutenberg for pages and other post types
add_filter('use_block_editor_for_post_type', '__return_false', 10);