Open prtksxna opened 4 years ago
function prefix_block_styles() { wp_enqueue_style( 'prefix-editor-styles', get_theme_file_uri( 'css/editor-style.css' ) ); $prefix_heading_font = get_theme_mod( 'heading_font', 'Lora' ); $prefix_body_font = get_theme_mod( 'body_font', 'Roboto' ); wp_enqueue_style( 'prefix-editor-font', '//fonts.googleapis.com/css?family=' . $prefix_heading_font . ':400,700|' . $prefix_body_font . ':400,700&display=swap'); $prefix_custom_css = ' .edit-post-visual-editor.editor-styles-wrapper { font-family:' . esc_html( $prefix_body_font ) . ' } .editor-post-title__block .editor-post-title__input, .editor-styles-wrapper h1, .editor-styles-wrapper h2, .editor-styles-wrapper h3, .editor-styles-wrapper h4, .editor-styles-wrapper h5, .editor-styles-wrapper h6 { font-family:' . esc_html( $prefix_heading_font ) . ' } '; wp_add_inline_style( 'prefix-editor-styles', $prefix_custom_css ); } add_action( 'enqueue_block_editor_assets', 'prefix_block_styles' );
from https://wordpress.slack.com/archives/C02RP4Y3K/p1591877936136600
https://developer.wordpress.org/reference/functions/wp_add_inline_style/
from https://wordpress.slack.com/archives/C02RP4Y3K/p1591877936136600