在自定义post_type
上使用Visual Composer时,在使用Tiny MCE wysiwyg编辑文本字段时会出现以下错误:
visual composer "VC: Tinymce error! Compatibility problem with other plugins."
答案 0 :(得分:-3)
您需要为自定义editor
启用“post_type
”,以便WordPress加载Tiny MCE客户端脚本文件。
register_post_type( 'my_post_type', array(
[...]
'supports' => array( 'editor')
);