📜  禁用 wordpress 编辑器 - 帖子类型帖子上的古腾堡 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:16.948000             🧑  作者: Mango

代码示例1
// Disable wordpress editor - gutenberg on Post type post 
add_filter('use_block_editor_for_post_type', 'disable_gutenberg', 10, 2);
function disable_gutenberg($current_status, $post_type)
{
    // Use your post type key instead of 'product'
    if ($post_type === 'post') return false;
    return $current_status;
}