wordpress - Disable visual editor based on role? -
i want disable visual editor form 'author' role form wordpress site. author see text editor when write post.
you can use user_can_richedit
filter tell wp disable rich editor author through code (put inside functions.php file):
$user = wp_get_current_user(); if ( in_array( 'author', (array) $user->roles ) ) { add_filter( 'user_can_richedit' , '__return_false', 50 ); }
Comments
Post a Comment