Hide the WordPress Admin Bar for All U...
Learn how to easily remove the WordPress admin bar for all users except administrator...

WPCodeBox
724
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);





