色編
色の設定を削除
// カラーパレット削除
add_theme_support('editor-color-palette');
// 色の設定削除
add_theme_support('disable-custom-colors');
カラーパレットの登録
add_theme_support('editor-color-palette', array(
array(
'name' => 'テスト', // 名前
'slug' => 'test', // class name
'color' => '#0A4D17', // 管理画面サイドバー上の色
),
...
));
フォントサイズ編
フォントサイズの数値調整無効化
add_theme_support('disable-custom-font-sizes');
フォントサイズの登録
add_theme_support('editor-font-sizes', array(
array(
'name' => 'テスト', // 名前
'size' => 10, // 管理画面サイドバー上のフォントサイズ
'slug' => 'test' // class name
),
...
));