备个份:WordPress代码子主题CSS覆盖问题
•文章
29
0
之前用WordPress主题,开启子主题之后,CSS覆盖问题折腾我无数个难眠的夜。每次加body或者使用!important调整优先级真是麻烦!!!多谢群友提供的解决方案。以下代码放子主题function.php
文件即可
//子主题目录url
define( 'MU_CHILD_URI', get_stylesheet_directory_uri() );
//加载子主题样式
add_action( 'wp_enqueue_scripts', 'child_theme_enqueue_styles',99 );
function child_theme_enqueue_styles() {
//加载子主题样式文件,使它在所有样式之后
wp_enqueue_style( 'child-style', MU_CHILD_URI.'/style.css' , array() );
}