Skip to content

Instantly share code, notes, and snippets.

@bacoords
Last active June 9, 2016 17:03
Show Gist options
  • Save bacoords/b5c36feac39a70ccdd0e to your computer and use it in GitHub Desktop.
Save bacoords/b5c36feac39a70ccdd0e to your computer and use it in GitHub Desktop.
Snippet to change TINYMCE fontsize to EMs

functions.php snippet to change TINYMCE fontsize to EMs

Source: wpexplorer.com

// Customize mce editor font sizes
if ( ! function_exists( 'wpex_mce_text_sizes' ) ) {
	function wpex_mce_text_sizes( $initArray ){
		$initArray['fontsize_formats'] = "0.25em 0.5em 0.75em 1em 1.25em 1.5em 1.75em 2em 2.25em 2.5em 2.75em 3em 3.25em 3.5em 3.75em 4em 4.25em 4.5em 4.75em 5em 5.25em 5.5em 5.75em 6em";
		return $initArray;
	}
}
add_filter( 'tiny_mce_before_init', 'wpex_mce_text_sizes' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment