pbearne / wp-author-avatars

copy of the SVN at http://wordpress.org/extend/plugins/author-avatars/ wordpress plugin
4 stars 7 forks source link

Hide TinyMCE Icon From Visual Editor #7

Closed BFTrick closed 11 years ago

BFTrick commented 11 years ago

Hello there,

I added a filter that allows someone the ability to turn off the icon in the WordPress Visual Editor. By default of course the icon still shows.

/**
 * Override Author Avatars tinymce configuration
 */
function mcl_tinymce_editor() {
    global $aa;
    remove_action( 'init', array( $aa, 'init_tinymce_editor' ), 30 );   
}
add_action( 'init', 'mcl_tinymce_editor', 10 );
pbearne commented 11 years ago

pulled this