如何使wordpress编辑器只读取只读输入。 我正在使用以下代码在页面中显示编辑器
<?php
$args= array(
'quicktags' => false,
'media_buttons' => false
);
wp_editor( wpautop(stripslashes($my_text)), "my_text", $args);
?>
其设置或任何其他方法中可用的任何选项?
答案 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;
} );