我正在将proficient主题的子主题(即specia的子主题)
我创建了一个“熟练的孩子”文件夹,并创建了带有修改的style.css和functions.php。
我将以下代码加载为父样式:
add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );
function enqueue_parent_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
}
但是模板正在加载Specia CSS,而不是Proficient ...
我做错了什么?
谢谢