作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要在某些页面的编辑屏幕上禁用古腾堡编辑器。
我知道如何为帖子类型禁用它,就像所有页面一样:
/************************************************************ */
/* Disable Gutenberg for post type */
add_filter('use_block_editor_for_post_type', 'prefix_disable_gutenberg', 10, 2);
function prefix_disable_gutenberg($current_status, $post_type)
{
if ( $post_type == 'page' ) return false;
return $current_status;
}
但我只想为一个页面禁用它,假设 ID 为“1716”。
如何以编程方式为某些页面 ID 禁用古腾堡编辑器?
最佳答案
use_block_editor_for_post
钩子(Hook)可以实现。
你可以通过多种方式使用钩子(Hook),但这里有一个例子;
使用您希望由经典编辑器编辑的 post_ids 修改 excluded_ids 数组。(记住 $post 适用于所有帖子类型)
function disable_block_editor_for_page_ids( $use_block_editor, $post ) {
$excluded_ids = array( 2374, 5378, 21091);
if ( in_array( $post->ID, $excluded_ids ) ) {
return false;
}
return $use_block_editor;
}
add_filter( 'use_block_editor_for_post', 'disable_block_editor_for_page_ids', 10, 2 );
请注意,您必须安装经典编辑器插件才能正常工作。
关于wordpress - 为某些页面 ID 禁用古腾堡编辑器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63922430/
我是一名优秀的程序员,十分优秀!