0

在自定义上使用 Visual Composer时,在使用post_typeTiny MCE 所见即所得编辑文本字段时会出现以下错误:

visual composer "VC: Tinymce error! Compatibility problem with other plugins."
4

1 回答 1

-3

您需要editor为您的 WordPress 自定义启用“”post_type以加载 Tiny MCE 客户端脚本文件。

register_post_type( 'my_post_type', array(
[...]
'supports'           => array( 'editor')
);
于 2016-05-03T11:13:27.820 回答