自定义 post_type 的故障排除 "VC: Tinymce error! Compatibility with other plugins"
Troubleshooting "VC: Tinymce error! Compatibility with other plugins" for custom post_type
在自定义 post_type
上使用 Visual Composer 时,在使用 Tiny MCE 所见即所得编辑文本字段时出现以下错误:
visual composer "VC: Tinymce error! Compatibility problem with other plugins."
您需要为自定义 post_type
启用“editor
”,以便 WordPress 加载 Tiny MCE 客户端脚本文件。
register_post_type( 'my_post_type', array(
[...]
'supports' => array( 'editor')
);
在自定义 post_type
上使用 Visual Composer 时,在使用 Tiny MCE 所见即所得编辑文本字段时出现以下错误:
visual composer "VC: Tinymce error! Compatibility problem with other plugins."
您需要为自定义 post_type
启用“editor
”,以便 WordPress 加载 Tiny MCE 客户端脚本文件。
register_post_type( 'my_post_type', array(
[...]
'supports' => array( 'editor')
);