Skip to content

Instantly share code, notes, and snippets.

@almone
Created April 8, 2016 19:09
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 almone/53bc14368e187e71ceada456af1f6f2a to your computer and use it in GitHub Desktop.
Save almone/53bc14368e187e71ceada456af1f6f2a to your computer and use it in GitHub Desktop.
<?php
// Stop TinyMCE cleaning HTML code
function myformatTinyMCE($in) {
$in['verify_html']=false;
return $in;
}
add_filter('tiny_mce_before_init', 'myformatTinyMCE' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment