To enqueue I have used get_theme_file_uri('/style.css')
. Now I have created a child theme using a generator and it created a code like the following; but it throws a php error with parent-style.
get_theme_file_uri()
in my
parent theme as it will automatically search for file in child
theme?css
code in parent theme (style.css
). So if I use child theme (which is empty). So will the parent theme style get applied?function theme_enqueue_styles() {
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));
}
add_action('wp_enqueue_scripts', 'theme_enqueue_styles');
Thanks
To enqueue I have used get_theme_file_uri('/style.css')
. Now I have created a child theme using a generator and it created a code like the following; but it throws a php error with parent-style.
get_theme_file_uri()
in my
parent theme as it will automatically search for file in child
theme?css
code in parent theme (style.css
). So if I use child theme (which is empty). So will the parent theme style get applied?function theme_enqueue_styles() {
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));
}
add_action('wp_enqueue_scripts', 'theme_enqueue_styles');
Thanks
Is the code below really needed if i am using
get_theme_file_uri()
in my parent theme as it will automatically search for file in child theme?
No. If your parent theme uses get_theme_file_uri( '/style.css' )
, then when you create a style.css file in your child theme, WordPress will load that instead. So it won't load the parent theme's styles at all, which I think is related to your next question.
I have some css code in parent theme (style.css). So if i use child theme(which is empty). so whether the parent theme style will get applied?
If your parent theme uses get_theme_file_uri( '/style.css' )
, and your child theme has a style.css file, the parent the styles won't get loaded at all. get_theme_file()
will load the first file it finds, not all of them.
If you want to load the parent theme's styles and the child theme's styles, you have two options:
get_parent_theme_file_uri( 'style.css' )
. This will cause WordPress to always load style.css from the parent theme, even if a child theme is activated. If you want to load style.css from the child theme as well, then enqueue get_theme_file_uri( 'style.css' )
from the child theme. Or,get_parent_theme_file_uri( 'style.css' )
from the child theme.