从父主题创建子主题时字体大小是否减小?

时间:2018-11-13 作者:Madhur Jain

创建和激活子主题时,字体大小会比父主题减小

<?php function my_theme_enqueue_styles() {

$parent_style = \'spicepress-style\'; // This is \'spicepress-style\' for the Spicepress theme.

wp_enqueue_style( $parent_style, get_template_directory_uri() . \'/style.css\' );
wp_enqueue_style( \'child-style\',
    get_stylesheet_directory_uri() . \'/style.css\',
    array( $parent_style ),
    wp_get_theme()->get(\'Version\')
);}add_action( \'wp_enqueue_scripts\', \'my_theme_enqueue_styles\',10 );?>

1 个回复
SO网友:Madhur Jain

父样式依赖于引导。css。我在函数中添加了依赖项。php,结果很好。

发现此链接有助于解决我的问题https://wordpress.stackexchange.com/a/252360/153981

结束

相关推荐

导航菜单的其他css

我已经在这个网站上定制了导航菜单。每个主菜单项都有自己的悬停颜色。我的问题是,如何更改所选菜单项的颜色以匹配子菜单。目前,我可以将所有内容更改为不同的颜色,但我想要实现的是为每个子菜单所选项目设置不同的颜色。当前设置为橙色。www.小丑镇。co.uk公司