Gutenberg(ブロックエディタ)を無効化する方法
-
Publish Kintone Dataはクラシックエディターでないとうまく動かないとのことでした。
下記の方法で「投稿 post 」のみ無効化すれば、全体のデザインにはブロックエディターが使用できます。
WordPress:Gutenberg(ブロックエディタ)を無効化する方法
特定の投稿タイプで無効化
https://www.nxworld.net/wp-disable-gutenberg.htmlfunctions.php add_filter( 'use_block_editor_for_post_type', 'disable_block_editor', 10, 2 ); function disable_block_editor( $use_block_editor, $post_type ) { if ( $post_type === 'post' ) return false; return $use_block_editor; }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.