WordPress - 2020-08-22

固定ページやカスタム投稿ページでGutenberg(ブロックエディタ)を無効化する

固定ページやカスタム投稿ページでGutenbergを無効化したい場合はfunctions.phpに下記のように記述します。

固定ページの場合

add_filter( 'use_block_editor_for_post_type', 'hide_block_editor', 10, 10 );
function hide_block_editor( $use_block_editor, $post_type ) {
  if ( $post_type === 'page' ) return false;
  return $use_block_editor;
}

カスタム投稿ページの場合

カスタム投稿のスラッグ名「sample」とします

add_filter( 'use_block_editor_for_post_type', 'hide_block_editor', 10, 10 );
function hide_block_editor( $use_block_editor, $post_type ) {
  if ( $post_type === 'sample' ) return false;
  return $use_block_editor;
}
Related Posts

Related Posts

WordPress Popular Postsのサムネイルをaタグの中に入れる方法-出力内容カスタマイズ

2020-06-17

WordPressのカスタムフィールドやカテゴリを検索対象に含める方法

2018-02-07

WordPressの検索結果から特定の情報を除外、または追加する方法

2019-09-03

Wordpressの管理画面の投稿一覧カスタマイズ方法

2019-08-30