WordPressのグーテンベルクのブロックエディタ/管理画面に独自スタイルの追加方法
functions.phpで読み込むCSSを指定する.
以下はpost_typeで特定のカスタムポストのみに設定
/**
* 管理画面に追加のスタイル
*/
function enqueue_gutenberg() {
global $post_type;
if(!in_array($post_type,['rent','property'])){
return;
}
wp_register_style( 'my-gutenberg', get_stylesheet_directory_uri() . '/css/editor.css' );
wp_enqueue_style( 'my-gutenberg' );
}
add_action( 'enqueue_block_editor_assets', 'enqueue_gutenberg' );