in TinyMCE-梦谈多话的回答
in TinyMCE
I have initialised TinyMCE as follows. I want to force line breaks when user presses enter and not the paragraphs. I\'m trying following, but not working. I\'m using TinyMCE ve
Insert in theme functions.php the following code:
add_filter( 'tiny_mce_before_init', 'my_switch_tinymce_p_br' ); function my_switch_tinymce_p_br( $settings ) { $settings['forced_root_block'] = 'br'; return $settings; }