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
Learn how to easily disable CSS Lint in CodeMirror for WordPress with this simple solution.
<?php
// Disable CSS Lint in CodeMirror
function my_disable_csslint($settings) {
if ($settings['codemirror']['mode'] === 'text/css') {
$settings['codemirror']['lint'] = false;
}
return $settings;
}
add_filter('wp_code_editor_settings', 'my_disable_csslint', 11);