Created
January 7, 2016 14:57
-
-
Save fernandoacosta/cc2235f3cc955bb32575 to your computer and use it in GitHub Desktop.
Remover formatação ao colar WordPress
This file contains hidden or 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 | |
/* | |
** Mudar <p> por <br /> no editor do fórum | |
*/ | |
add_filter( 'tiny_mce_before_init', 'my_switch_tinymce_p_br' ); | |
function my_switch_tinymce_p_br( $settings ) { | |
if ( ! is_admin() ) { | |
$settings['forced_root_block'] = false; | |
$settings['paste_as_text'] = true; | |
} | |
return $settings; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment