With WordPress 3.9 coming soon it’s bringing along TinyMCE 4.0. I’m running my plugins and functions through some testing and found that one of my functions seems broken / not working with the new TinyMCE
function myformatTinyMCE( $in )
{
$in['theme_advanced_buttons1'] = 'bold';
$in['theme_advanced_buttons2'] = 'formatselect';
$in['wordpress_adv_hidden'] = false;
return $in;
}
add_filter( 'tiny_mce_before_init', 'myformatTinyMCE' );
The above function used to limit the buttons in the tinyMCE to specific buttons, I’ve simplified it a bit to make it easier for testing. If I print out $in
it shows the correct values in the correct spots, but when I actually load up a page it just defaults to the normal buttons.
I’ve also tried to use the example in the TinyMCE Codex which also didn’t seem to have any effect.
I’m using the WordPress Beta Tester Plugin and I do have TinyMCE Advanced installed but disabled.
With the new TinyMCE how can I continue using / customizing, and are there any ‘Gotchas’ that have changed from the previous TinyMCE Version?
EDIT
Looks like $in['wordpress_adv_hidden'] = false;
is not longer being used – No idea how to unhide the Kitchen Sink.
The strings was new, not more for your requirements.
This is the new content of the hook.
Also change the strings inside the array in your source to:
But see also this test plugin Gist 9758082 and this thread for WP 3.9 and the new TinyMCE 4.0 to understand the topic.
Forcing Toolbar2
To show always the toolbar 2, without use the button
wp_adv
add the follow source to a plugin.BUT, now the hint for the value
wordpress_adv_hidden
. In the next WordPress version, after 3.9 will restore the old hookwordpress_adv_hidden
to toggle the toolbar, see ticket 27963. Then is possible to to use the follow source.$in['wordpress_adv_hidden'] = FALSE;
One change is that:
theme_advanced_buttons1
is going to be changed to:toolbar1
which allows you to update the buttons so my new function will look something like:Also it looks like
formatselect
is not really favored as much in this iteration. Should probably be converting over tostyleselect
as it allows more options and customizations (such as nested styles) and also goes with a more minimalist design.Another gotcha is alignment options have been changed from
justify
toalign
like so:alignleft, aligncenter, alignright, alignjustify
.