WP-子主题获取主题目录

我在子目录中有一个与主题相关的gfx所在的图像文件夹。如果我想通过以下方式访问它:

< img src="http://www.srcmini.com/< ?php echo get_template_directory_uri(); ?> /assets/Logo.svg" />

它试图在父主题目录中查找/ assets。
【WP-子主题获取主题目录】如何引用子主题目录?
#1函数get_template_directory_uri始终返回父主题的url。没关系, 在哪里叫它。
要获取你的子主题的网址, 可以使用get_stylesheet_directory_uri()。因此, 你的代码将是:
< img src="http://www.srcmini.com/< ?php echo get_stylesheet_directory_uri(); ?> /assets/Logo.svg" />

    推荐阅读