get_stylesheet_directory_uri()
请注意,这将返回格式正确的URI;换句话说,它将是一个web地址(对于SSL,以http://或https://开头)。因此,它最适合用于链接、引用其他样式表或最常见的图像。
get_stylesheet_directory()
检索当前主题/子主题的样式表目录路径
Note: 不包含尾部斜杠。返回绝对服务器路径(例如:/home/user/public\\u html/wp-content/themes/my\\u-theme),而不是URI。
所以我猜这个
require_once( get_stylesheet_directory() . \'/functions/taxonomy-images.php\' );
应该没问题。