How to Hide Hours and Minutes from a C...
This code snippet allows you to easily hide hours and minutes from your countdown blo...

WPCodeBox
287

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





