
There is an error in the path that loads Newsreader font inside book_preload_webfonts(). I am simply suggesting changing the path to the correct one.
150 lines
3.2 KiB
PHP
150 lines
3.2 KiB
PHP
<?php
|
|
/**
|
|
* Livro functions and definitions
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/theme-functions/
|
|
*
|
|
* @package Livro
|
|
* @since Livro 1.0
|
|
*/
|
|
|
|
|
|
if ( ! function_exists( 'livro_support' ) ) :
|
|
|
|
/**
|
|
* Sets up theme defaults and registers support for various WordPress features.
|
|
*
|
|
* @since Livro 1.0
|
|
*
|
|
* @return void
|
|
*/
|
|
function livro_support() {
|
|
|
|
// Add support for block styles.
|
|
add_theme_support( 'wp-block-styles' );
|
|
|
|
// Enqueue editor styles.
|
|
add_editor_style( 'style.css' );
|
|
|
|
}
|
|
|
|
endif;
|
|
|
|
add_action( 'after_setup_theme', 'livro_support' );
|
|
|
|
if ( ! function_exists( 'livro_styles' ) ) :
|
|
|
|
/**
|
|
* Enqueue styles.
|
|
*
|
|
* @since Livro 1.0
|
|
*
|
|
* @return void
|
|
*/
|
|
function livro_styles() {
|
|
|
|
// Register theme stylesheet.
|
|
wp_register_style(
|
|
'livro-style',
|
|
get_template_directory_uri() . '/style.css',
|
|
array(),
|
|
wp_get_theme()->get( 'Version' )
|
|
);
|
|
|
|
// Add styles inline.
|
|
wp_add_inline_style( 'livro-style', livro_get_font_face_styles() );
|
|
|
|
// Enqueue theme stylesheet.
|
|
wp_enqueue_style( 'livro-style' );
|
|
|
|
}
|
|
|
|
endif;
|
|
|
|
add_action( 'wp_enqueue_scripts', 'livro_styles' );
|
|
|
|
if ( ! function_exists( 'livro_editor_styles' ) ) :
|
|
|
|
/**
|
|
* Enqueue editor styles.
|
|
*
|
|
* @since Livro 1.0
|
|
*
|
|
* @return void
|
|
*/
|
|
function livro_editor_styles() {
|
|
|
|
// Add styles inline.
|
|
wp_add_inline_style( 'wp-block-library', livro_get_font_face_styles() );
|
|
|
|
}
|
|
|
|
endif;
|
|
|
|
add_action( 'admin_init', 'livro_editor_styles' );
|
|
|
|
|
|
if ( ! function_exists( 'livro_get_font_face_styles' ) ) :
|
|
|
|
/**
|
|
* Get font face styles.
|
|
* Called by functions livro_styles() and livro_editor_styles() above.
|
|
*
|
|
* @since Livro 1.0
|
|
*
|
|
* @return string
|
|
*/
|
|
function livro_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( 'livro_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 Livro 1.0
|
|
*
|
|
* @return void
|
|
*/
|
|
function livro_preload_webfonts() {
|
|
?>
|
|
<link rel="preload" href="<?php echo esc_url( get_theme_file_uri( 'assets/fonts/Newsreader.woff2' ) ); ?>" as="font" type="font/woff2" crossorigin>
|
|
<link rel="preload" href="<?php echo esc_url( get_theme_file_uri( 'assets/fonts/Newsreader-italic.woff2' ) ); ?>" as="font" type="font/woff2" crossorigin>
|
|
<?php
|
|
}
|
|
|
|
endif;
|
|
|
|
add_action( 'wp_head', 'livro_preload_webfonts' );
|
|
|
|
// Add block patterns
|
|
require get_template_directory() . '/inc/block-patterns.php';
|
|
|