Advertisement
jan_dembowski

increase-editor-font.php

Mar 14th, 2012
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name: Increase Editor Font Size
  4. Description: This plugin will increase the size of the font in the editor only for easier reading and editing.
  5. */
  6.  
  7. function plugin_mce_css( $mce_css ) {
  8.         if (! empty( $mce_css ) )
  9.                 $mce_css .= ',';
  10.  
  11.         $mce_css .= plugin_dir_url( __FILE__ ) . '/editor.css';
  12.  
  13.         return $mce_css;
  14. }
  15.  
  16. add_filter( 'mce_css' , 'plugin_mce_css' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement