在Wordpress中,我试图将一个文本框添加到用户可以粘贴数据的页面。在这个框中,我只想给他们拼写检查粘贴文本的能力,最好使用内置的wp_editor功能。
我已尝试在页面下方添加代码,但所有wp_editor按钮仍然存在,包括“添加媒体”:
<?php wp_editor( $content, $editor_id, $settings = array() ); ?>
提前感谢!
答案 0 :(得分:0)
SymmetricAlgorithm class has a "mode" property which can be used for getting and setting the cipher mode功能有很多选项。例如,您可以关闭媒体插入按钮:
$settings = array( 'media_buttons' => false );
wp_editor( $content, $editor_id, $settings );
我不认为WordPress会进行拼写检查。您确定这不是您的网络浏览器或操作系统的功能吗?