I have this nice little function to remove buttons from the tinyMCE editor in WordPress, so far I’ve been able to remove most of the ones I need to....
I’m not sure why I haven’t been able to find this, but does anyone know how to get the input of the TinyMCE editor? I am using it in...
With WP 3.2, WordPress maybe has a new function to add Link-Quicktags to the editor. But I found an function to set defaults for the link-button: Take a look...
When I use the WordPress HTML editor to add icomoon icons like this: <span class="icon-shield"></span> and then switch to the visual editor and then back to the HTML editor,...
Can you add the visual editor to the description field for custom taxonomies? It would be nice to have this option available when you edit an entry for a...
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 /...
This is pretty much an exact duplicate of: How to make WordPress and TinyMCE accept <a> tags wrapping block-level elements as allowed in HTML5? and HTML5, WordPress and Tiny...
In searching for a solution, I’ve come across the plugin to enable a dropdown of CSS styles already present within a stylesheet. What I want is to allow the...
[*] Yes, i have found other questions to this topic, but no have the same topic exactly and no solution for my problem. If you include code inside the...
Before WP 3.9 i had the following two filters applied in the functions.php: function my_mce_buttons_2( $buttons ) { array_unshift( $buttons, 'styleselect' ); return $buttons; } add_filter('mce_buttons_2', 'my_mce_buttons_2'); function mce_mod(...