Guest User

Untitled

a guest
Jul 17th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. // Customize mce editor font sizes
  2. if ( ! function_exists( 'wpex_mce_text_sizes' ) ) {
  3. function wpex_mce_text_sizes( $initArray ){
  4. $initArray['fontsize_formats'] = "9px 10px 12px 13px 14px 16px 18px 20px 21px 22px 23px 24px 25px 26px 27px 28px 29px 30px 31px 32px 33px 34px 35px 36px 37px 38px 39px 40px 42px 44px 46px 48px 50px";
  5. return $initArray;
  6. }
  7. }
  8. add_filter( 'tiny_mce_before_init', 'wpex_mce_text_sizes' );
Add Comment
Please, Sign In to add comment