Я пытался применить другое семейство шрифтов в моей дочерней теме, но тема использует шрифт родительской темы. Другие свойства CSS работают нормально. У меня эта проблема только со свойством font-family. Это работает только тогда, когда я использую! Важно. Любая помощь приветствуется.
Файл function.php дочерней темы:
<?php
add_action( 'wp_enqueue_scripts', 'load_theme_assets' );
function load_theme_assets() {
$parent_style = 'parent-style';
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
# Loading Child Theme Main Stylesheet
wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css');
# Loading AOS Stylesheet
wp_enqueue_style( 'aos', get_stylesheet_directory_uri() . '/assets/css/aos.css');
# Loading Owl Carousel Stylesheet
wp_enqueue_style( 'owl-carousel', get_stylesheet_directory_uri() . '/assets/css/owl.carousel.css');
# Loading Owl Carousel Theme Default Stylesheet
wp_enqueue_style( 'owl-theme-default', get_stylesheet_directory_uri() . '/assets/css/owl.theme.default.css');
# Loading Google Fonts
wp_enqueue_style( 'custom-google-fonts', 'https://fonts.googleapis.com/css?family=Lora|Martel|Noto+Serif+SC|Playfair+Display&display=swap', false);
# Loading Font Awesome Icons
wp_enqueue_style( 'all', get_stylesheet_directory_uri() . '/assets/css/all.css');
И мой CSS-файл:
body {
border: 1px solid #999;
background-color: #F9F8F8;
font-family: 'Martel', serif;
}
Итак, я вижу границуи фон меняется, но шрифт остается прежним.