Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save agustibr/1993393 to your computer and use it in GitHub Desktop.
Save agustibr/1993393 to your computer and use it in GitHub Desktop.
WP Collection of Code for functions.php [3]
<?php
/**
* Safe Pasting for TinyMCE (automatically clean up MS Word HTML)
*/
function tinymce_paste_options($init) {
$init['paste_auto_cleanup_on_paste'] = true;
$init['paste_convert_headers_to_strong'] = true;
return $init;
}
if( is_admin() ) add_filter('tiny_mce_before_init', 'tinymce_paste_options');
// @link : http://www.kevinleary.net/clean-up-microsoft-word-pasted-html-tinymce/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment