Removing span tag form plugin text editor
-
Hi,
When swithing between Visual and Text tabs in text field, in Design tab of the WP Maintenance Mode plugin, the <span> tag is removed.
I am surpriced as in my functions. php file there is the following piece of code. It works for my blog sites and posts but it does not work for plugin.What is the solution?
// stop wordpress removing span tags
function uncoverwp_tiny_mce_fix( $init )
{
// html elements being stripped
$init[‘extended_valid_elements’] = ‘span[*]’;// pass back to wordpress
return $init;
}
add_filter( ‘tiny_mce_before_init’, ‘uncoverwp_tiny_mce_fix’ );
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Removing span tag form plugin text editor’ is closed to new replies.