prtksxna / zuari

🏞 Wordpress theme for the stream of your life
https://wordpress.org/themes/zuari/
GNU General Public License v2.0
17 stars 3 forks source link

Include customizer settings in editor styles #117

Open prtksxna opened 4 years ago

prtksxna commented 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

prtksxna commented 4 years ago

https://developer.wordpress.org/reference/functions/wp_add_inline_style/