我在子目录中有一个与主题相关的gfx所在的图像文件夹。如果我想通过以下方式访问它:
<img src="<?php echo get_template_directory_uri();?>/assets/Logo.svg" />
它试图在父主题目录中查找/ assets。
如何引用子主题目录?
#1
函数get_template_directory_uri始终返回父主题的url。没关系, 在哪里叫它。
要获取你的子主题的网址, 可以使用get_stylesheet_directory_uri()。因此, 你的代码将是:
<img src="<?php echo get_stylesheet_directory_uri();?>/assets/Logo.svg" />
评论前必须登录!
注册