作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
WordPress 在其第五版中添加了古腾堡/ block 编辑器,并且默认情况下为帖子和页面帖子类型启用。
在不久的将来,它可能会默认为所有自定义帖子类型启用,因此作为 WordPress 开发人员,我想知道如何为我自己的自定义帖子类型禁用此编辑器?我想为我从插件或主题注册的帖子类型保留经典编辑器。
最佳答案
可以使用 WordPress 过滤器简单地禁用编辑器。
如果您只想为自己的帖子类型禁用 block 编辑器,您可以将以下代码添加到您的插件或主题的 functions.php
文件中。
add_filter('use_block_editor_for_post_type', 'prefix_disable_gutenberg', 10, 2);
function prefix_disable_gutenberg($current_status, $post_type)
{
// Use your post type key instead of 'product'
if ($post_type === 'product') return false;
return $current_status;
}
如果您想完全禁用 block 编辑器(不推荐),您可以使用以下代码。
add_filter('use_block_editor_for_post_type', '__return_false');
如果您只想为自己的帖子类型禁用古腾堡编辑器,您可以将以下代码添加到您的插件或主题的 functions.php
文件中。
add_filter('gutenberg_can_edit_post_type', 'prefix_disable_gutenberg', 10, 2);
function prefix_disable_gutenberg($current_status, $post_type)
{
// Use your post type key instead of 'product'
if ($post_type === 'product') return false;
return $current_status;
}
如果您想完全禁用古腾堡编辑器(不推荐),可以使用以下代码。
add_filter('gutenberg_can_edit_post_type', '__return_false');
关于php - 如何禁用某些帖子类型的古腾堡/ block 编辑器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52199629/
我是一名优秀的程序员,十分优秀!