如何使wordpress编辑器只读?

时间:2014-09-15 13:35:17

标签: php wordpress wp-editor

如何使wordpress编辑器只读取只读输入。 我正在使用以下代码在页面中显示编辑器

<?php
$args= array( 
'quicktags' => false,
'media_buttons' => false
);
wp_editor( wpautop(stripslashes($my_text)), "my_text", $args);
?>

其设置或任何其他方法中可用的任何选项?

1 个答案:

答案 0 :(得分:2)

use可以使用tiny_mce_before_init来修改微小的mce参数,将其设置为readonly

add_filter( 'tiny_mce_before_init', function( $args ) {

    if ( 1 == 1 )
         $args['readonly'] = 1;

    return $args;
} );