Skip to content

Instantly share code, notes, and snippets.

@fernandoacosta
Created January 7, 2016 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fernandoacosta/cc2235f3cc955bb32575 to your computer and use it in GitHub Desktop.
Save fernandoacosta/cc2235f3cc955bb32575 to your computer and use it in GitHub Desktop.
Remover formatação ao colar WordPress
<?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