TinyMCE-表格插件给出了很多空行

时间:2019-05-16 17:29:29

标签: wordpress tinymce cmb2

我正在向Wordpress TinyMCE添加表,添加表时,它只是给了我一堆空行。与请求的数字或行号相同。

以下是我通过CMB2传递给TinyMCE的选项

"selector" => "textarea",
"plugins"=> "table charmap colorpicker compat3x directionality fullscreen hr image link lists media paste tabfocus textcolor wordpress wpautoresize wpdialogs wpeditimage wpemoji wpgallery wplink wptextpattern wpview",
"menubar"=> "table",
"toolbar"=> "table",

已加载必要的JS。

function add_the_table_plugin( $plugins ) {
     $plugins['table'] = get_bloginfo('stylesheet_directory') . '/tinymce-plugins/table/plugin.min.js';
     return $plugins;
}
add_filter( 'mce_external_plugins', 'add_the_table_plugin', 999 );

按钮在那里,但是如前所述,它会输出一堆空行,与请求的行数相同。

enter image description here

Wordpress可能提供了自己的设置,所以我没有太多的代码来生成错误。

AFAIK,WP加载TinyMCE 4.9.2。我不知道加载了哪些插件及其配置。

0 个答案:

没有答案