首先,你走在正确的轨道上
从css
文件
/*
Theme Name:
Theme URI:
Description:
Author:
Author URI:
Version:
Template:
*/
@import url("../{theme_name}/style.css");
如果覆盖样式:
只写要覆盖的类和ID,并以
!important
例如:
.container{
margin:0 0 0 50px !important;
}
仅复制要覆盖的文件,而不是复制整个主题
创建函数。php在子主题文件夹中,并将子主题css文件排队
Function wp_enqueue_scripts() {
wp_register_style( \'childstyle\', get_stylesheet_directory_uri() . \'/style.css\' );
wp_enqueue_style( \'childstyle\' );
}
add_action( \'wp_enqueue_scripts\', \'wp_enqueue_scripts\', 11);
这应该会让你走。。。。