
increase-editor-font.php
By:
jan_dembowski on
Mar 14th, 2012 | syntax:
PHP | size: 0.41 KB | hits: 54 | expires: Never
<?php
/*
Plugin Name: Increase Editor Font Size
Description: This plugin will increase the size of the font in the editor only for easier reading and editing.
*/
function plugin_mce_css( $mce_css ) {
if (! empty( $mce_css ) )
$mce_css .= ',';
$mce_css .= plugin_dir_url( __FILE__ ) . '/editor.css';
return $mce_css;
}
add_filter( 'mce_css' , 'plugin_mce_css' );