WP3.9 Filters on TinyMCE 'Format' drop down no longer work
-
Hi, forgive me if this has been asked before (an initial search didn’t unearth anything).
I recently updated to WP3.9 and noticed that the function I use to filter the style/format drop-down in the TinyMCE toolbar no longer works (the default drop-down, not the additional custom styles one).
I usually put something like this in my functions.php…
function change_mce_options($init) { $init['theme_advanced_blockformats'] = 'p,h3,h4'; return $init; } add_filter('tiny_mce_before_init', 'change_mce_options');
And that would ensure that only paragraph, heading 3 and heading 4 got output in the drop-down. Since the update to 3.9 the drop-down displays all default options.
Any ideas?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘WP3.9 Filters on TinyMCE 'Format' drop down no longer work’ is closed to new replies.