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
Learn how to disable WordPress embeds using PHP code with this simple snippet.
<?php
function my_disable_embeds() {
wp_dequeue_script('wp-embed');
}
add_action('wp_footer', 'my_disable_embeds');