Can Rich Text features be configured per user?

There are obviously different types of users (from power-users to casual authors).

WordPress’s Rich Text editor is based on TinyMCE – which has a lot of features. Most of these features are disabled, by default, inside WordPress to create a friendlier (and safer) editing experience. However, some power-users would prefer to use these extra TinyMCE features.

Read More

Is it possible to enable or disable various Rich Text features (tables, layers, styles, etc) per user? How is this done? Thanks.

Related posts

Leave a Reply

1 comment

  1. look here tinymce and users and add something similar to your themes functions.php and maybe work on that by wrapping it with a custom role / capability which you assign to your trusted users:

    if (current_user_can( 'have_tiny_mce_options' ) { tinymce options here }
    

    the page example only shows 3 options but im sure that this can be improved