ワードプレス教室での本日の授業から…
Emanon Pro テーマでのサイト作成。ブロックエディター内でのクラシックブロックのボタンが表示されない現象。
themes/emanon-free/lib/css/editor-style-gutenberg.css?ver=5.0.3
.wp-block * {
font-family: -apple-system, 'BlinkMacSystemFont', 'Hiragino Kaku Gothic ProN', '繝。繧、繝ェ繧ェ', Sans-Serif!important;
line-height: 1.6!important;
color: #303030!important;
}
次の様にCSSを変更して、現象を回避した。
themes/emanon-free/lib/css/editor-style-gutenberg.css?ver=5.0.3
.wp-block * {
font-family: dashicons, -apple-system, 'BlinkMacSystemFont', 'Hiragino Kaku Gothic ProN', '繝。繧、繝ェ繧ェ', Sans-Serif!important;
line-height: 1.6!important;
color: #303030!important;
}