How to make the wordpress editor readonly like readonly inputs. i am using following code for to display the editor in the page
<?php
$args= array(
'quicktags' => false,
'media_buttons' => false
);
wp_editor( wpautop(stripslashes($my_text)), "my_text", $args);
?>
any option available in its settings or any other method?