What is the differene between stylesheet_directory and template_directory? Is that representing Child theme and Parent theme?
Leave a Reply
You must be logged in to post a comment.
What is the differene between stylesheet_directory and template_directory? Is that representing Child theme and Parent theme?
You must be logged in to post a comment.
Kind of – the
template_directory
is the directory of your parent theme. Thestylesheet_directory
is the directory containing the primary stylesheet in use (which, if you have a child template will be the in the child directory, otherwise it will be in the template directory).See the Codex here:
‘stylesheet_url’ – Returns the primary CSS (usually style.css) file URL of the active theme.
‘template_url’ / ‘template_directory’ – URL of the active theme’s directory … Within child themes, both
get_bloginfo('template_url')
andget_template()
will return the parent theme directory.