返回
(string) 启用的主题的模板目录路径。
说明
用法
echo get_template_directory();
返回绝对服务器路径(例如:/home/user/public_html/wp-content/themes/my_theme),而不是URI。
在使用子主题的情况下,将返回父主题目录的绝对路径。使用get_stylesheet_directory()获取子主题目录的绝对路径。
要检索样式表目录的URI,请改用get_stylesheet_directory_uri()。
注意
- 使用:get_theme_root() 检索主题目录的绝对路径,get_template() 检索当前主题的目录名称。
- 不输出结尾的斜杠
源码
更新日志
版本 | 描述 |
---|---|
1.5.0 | 开始引入 |
使用示例
引入一个PHP文件
include( get_template_directory() . '/includes/my_file.php' );