gpt4 book ai didi

php - 样式表无法正确加载(子主题)

转载 作者:行者123 更新时间:2023-11-28 06:20:26 25 4
gpt4 key购买 nike

我正在尝试为我的下一个元素使用子主题。

这是我的问题:我正在为我的 h2 标题使用 @font-face,自定义字体在主字体页面上可见(但没有颜色),然后当我单击帖子标题时,自定义字体消失(但添加了颜色) .有关视觉示例,请参见下图。

wordpress-installation 位于子目录中 http://name.maindoman.com

Main Post

代码:

函数.php

<?php
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}
?>

样式.css

/*
Theme Name: Twenty Sixteen Child
Theme URI:
Description: Child theme for the Twenty Sixteen theme
Author URI:
Template: twentysixteen
Version: 1.1
*/

body {
color: pink;
}

h2 {
font-family: 'font name' !important;
font-weight: 700;
color: lightblue !important;

}

@font-face {
font-family:'font name';
src: url('http://url-to-the-fonts.com/font-file.eot');
src: url('http://url-to-the-fonts.com/font-file.eot?#iefix') format('embedded-opentype'),
url('http://url-to-the-fonts.com/font-file.woff') format('woff'),
url('http://url-to-the-fonts.com/font-file.svg#font-Bold') format('svg');
font-weight: 700;
font-style: normal;
font-stretch: normal;
unicode-range: U+000D-FB03;
}

最佳答案

要包含子主题目录中的样式,请使用以下函数。

<?php get_stylesheet_directory_uri(); ?>

https://codex.wordpress.org/Function_Reference/get_stylesheet_directory_uri

关于php - 样式表无法正确加载(子主题),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35628526/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com