How To Customize WordPress WYSIWYG Editor


Sponsored Links




Did you know that, Customize WordPress WYSIWYG Editor is one of my favorite excellent tricks by WP Engineer, please note this tricks need so many code to be added in functions.php on your theme, so read it carefully and happy explore this tricks.

How To Customize WordPress WYSIWYG Editor

How To Customize WordPress WYSIWYG Editor

Customizing the function of the buttons in your Editor

function do_change_mce_buttons( $initArray ) {
	//@see http://wiki.moxiecode.com/index.php/TinyMCE:Control_reference
	$initArray['theme_advanced_blockformats'] = 'p,address,pre,code,h3,h4,h5,h6';
	$initArray['theme_advanced_disable'] = 'forecolor';

	return $initArray;
}
add_filter('tiny_mce_before_init', 'do_change_mce_buttons');

More Details about this tweak you can check it out on this post. If you found any problem about this tricks, you can leave on this post or directly from WP Engineer Author of this original Post. Or if you want to quickest way, maybe you tried Adjusting the buttons via Customize WordPress Editor Plugin TinyMCE Advanced. Using plugin or written you own code? choose what make your happy ;)

Subscribe to Full RSS Feed

RSS FeedIf you thing this article useful, please consider subscribing to our RSS Feed or e-mail updates and stay updated with us. You can also follow @WPTricksNet on twitter for latest updates.

About WP Tricks

We are WordPress Family, we collected and writed useful tips and tricks for you WordPress. We share it for you...

Related Tips and Trick from Local Data and on The Net

Customize WordPress WYSIWYG Editor - WP Engineer

Customize WordPress WYSIWYG Editor. February 18th, 2010 by Frank • WordPress Tutorials • 21 Comments. Adjustments to the editor TinyMCE via hook, so regardless of Read More

TinyMCE « WordPress Codex

Looking for more buttons in the WYSIWYG editor? You can Show/Hide the Advanced Editor Toolbar in the standard Wordpress Customize TinyMCE with Filters . If you want to Read More

Customizing the TinyMCE WYSIWYG Editor in WordPress | kevinleary.net

Customizing the TinyMCE WYSIWYG Editor in WordPress More Resources. Customize WordPress WYSIWYG Editor; WordPress Codex: TinyMCE Read More

Customizing the WordPress WYSIWYG TinyMCE visual editor

Adding addtional buttons or tools to WordPress WYSIWYG TinyMCE visual editor: Like most people, you probably enjoy using the built in TinyMCE visual editor that is Read More

Word Press: Custom CSS styles in the WYSIWYG editor | A Blog about

Adding your custom CSS styles to the word press WYSIWYG native editor (TinyMCE editor WDMAC running on WordPress 3.3 “Sonny” Lomo style images with Read More


4 Responses to How To Customize WordPress WYSIWYG Editor

  1. Pingback: How To Adding Custom Buttons to Editor Wordpress # WordPress Tricks & Tips

  2. Pingback: WordPressハッカーズ

  3. Pingback: Change Editor Style In WordPress 3.0 | Unlock IMEI Cellphones

  4. Thanks for the tips, can I ask, will this code work on the latest version of wordpress?

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>