我的孩子主题文件夹由文件’
style.css’
和’
functions.php’
组成, 在我的functions.php文件中, 我无法访问函数theme_enqueue_styles()来使用自定义的CSS
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() .'/style.css' );
}
#1对于子主题, 你需要将get_template_directory_uri()替换为get_stylesheet_directory_uri()。
【子CSS的函数theme_enqueue_styles()】该代码应为:。
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_stylesheet_directory_uri() .'/style.css' );
}
推荐阅读
- 在WordPress中获取自定义帖子类型以加载自定义模板
- 在WordPress Penscratch主题的文件管理中找到custom-header.php
- 致命错误(内存不足(已分配407633920)(尝试分配16063字节))
- 致命错误(调用未定义函数wp_cache_get()&&&致命错误:调用未定义函数wp_cache_get())
- WordPress中的动态电话号码
- Divi子主题打破了WordPress定制器
- 定制程序配色方案不传递颜色
- 调用未定义的函数gd_info()
- shell的正则表达式