wordpress 在WP自定义文章类型中禁用编辑器[关闭]

p3rjfoxz  于 2023-06-05  发布在  WordPress
关注(0)|答案(1)|浏览(274)

**关闭。**此题需要debugging details。目前不接受答复。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
5天前关闭。
Improve this question
我试图禁用编辑器在WordPress中的一个特定的职位类型称为工作_上市。但是我不能禁用它,所以它不显示。
我尝试了不同的解决方案,但他们似乎禁用可视化编辑器,仍然允许我有一个html编辑器。

js81xvg6

js81xvg61#

如果您创建了自定义后使用插件u必须只编辑自定义后类型在支持选项您可以禁用编辑器参考附加的图像

或者第二种选择是

// Add this code to your theme's functions.php file or in a custom plugin.
function disable_editor_for_custom_post_type() {
    // Replace 'your_custom_post_type' with the slug of your custom post type.
    remove_post_type_support('your_custom_post_type', 'editor');
}
add_action('init', 'disable_editor_for_custom_post_type');

相关问题