Skip to content

Instantly share code, notes, and snippets.

@seandenigris
seandenigris / functions.php
Created October 30, 2015 03:09
WordPress Disable TinyMCE Tag Stripping
// Add to functions.php to disable tag stripping from visual editor
// From http://wordpress.stackexchange.com/questions/52582/how-to-disable-tinymce-from-removing-span-tags
function override_mce_options($initArray) {
$opts = '*[*]';
$initArray['valid_elements'] = $opts;
$initArray['extended_valid_elements'] = $opts;
return $initArray;
}
add_filter('tiny_mce_before_init', 'override_mce_options');