get( 'Version' )
);
// Add styles inline.
wp_add_inline_style( 'livre-style', livre_get_font_face_styles() );
// Enqueue theme stylesheet.
wp_enqueue_style( 'livre-style' );
}
endif;
add_action( 'wp_enqueue_scripts', 'livre_styles' );
if ( ! function_exists( 'livre_editor_styles' ) ) :
/**
* Enqueue editor styles.
*
* @since Livre 1.0
*
* @return void
*/
function livre_editor_styles() {
// Add styles inline.
wp_add_inline_style( 'wp-block-library', livre_get_font_face_styles() );
}
endif;
add_action( 'admin_init', 'livre_editor_styles' );
if ( ! function_exists( 'livre_get_font_face_styles' ) ) :
/**
* Get font face styles.
* Called by functions livre_styles() and livre_editor_styles() above.
*
* @since Livre 1.0
*
* @return string
*/
function livre_get_font_face_styles() {
return "
@font-face{
font-family: 'Newsreader';
font-weight: 200 800;
font-style: normal;
font-stretch: normal;
font-display: swap;
src: url('" . get_theme_file_uri( 'assets/fonts/Newsreader.woff2' ) . "') format('woff2');
}
@font-face{
font-family: 'Newsreader';
font-weight: 200 800;
font-style: italic;
font-stretch: normal;
font-display: swap;
src: url('" . get_theme_file_uri( 'assets/fonts/Newsreader-italic.woff2' ) . "') format('woff2');
}
";
}
endif;
if ( ! function_exists( 'livre_preload_webfonts' ) ) :
/**
* Preloads the main web font to improve performance.
*
* Only the main web font (font-style: normal) is preloaded here since that font is always relevant (it is used
* on every heading, for example). The other font is only needed if there is any applicable content in italic style,
* and therefore preloading it would in most cases regress performance when that font would otherwise not be loaded
* at all.
*
* @since Livre 1.0
*
* @return void
*/
function livre_preload_webfonts() {
?>