【WordPress】ブロックエディタに独自スタイルを適用する
functions.php に以下のように書く事で、
ブロックエディタに独自のスタイルを適用する事ができます。
add_editor_style( 'スタイルシートファイル名' );
add_theme_support( 'editor-styles' );
読み込まれたスタイルは、
.editor-style-wrapper クラス以下に再構成されます。
functions.php に以下のように書く事で、
ブロックエディタに独自のスタイルを適用する事ができます。
add_editor_style( 'スタイルシートファイル名' );
add_theme_support( 'editor-styles' );
読み込まれたスタイルは、
.editor-style-wrapper クラス以下に再構成されます。