Created
January 12, 2016 02:30
-
-
Save icreatesolutions/831731dfb0e74bd31f2c to your computer and use it in GitHub Desktop.
TinyMCE Custom Formats in WordPRess
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'tiny_mce_before_init', 'icreate__custom_tinymce_formats' ); | |
function icreate__custom_tinymce_formats( $init_array ) { | |
// Define the style_formats array | |
$style_formats = array( | |
array( | |
'title' => '.blockquote-alt', | |
'block' => 'blockquote', | |
'classes' => 'blockquote-alt', | |
'wrapper' => true, | |
), | |
); | |
// Insert the array, JSON ENCODED, into 'style_formats' | |
$init_array['style_formats'] = json_encode( $style_formats ); | |
return $init_array; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment