Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <?php
  2. add_filter( 'tiny_mce_before_init', 'add_frame_style' );
  3. /*
  4. * Add the new tinyMCE style
  5. */
  6. public static function add_frame_style( $params ) {
  7. $style_formats = json_decode( $params['style_formats'] );
  8. $style_formats[] = array(
  9. 'title' => 'Notes',
  10. 'block' => 'div',
  11. 'classes' => 'post-notes',
  12. 'wrapper' => true
  13. );
  14. $params['style_formats'] = json_encode( $style_formats );
  15. return $params;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement