返回
(string) 启用的主题的样式表目录路径。
说明
- 返回的路径不包含结尾斜杠。
- get_stylesheet_directory() 的输出例子:
/home/user/public_html/wp-content/themes/my_theme - 在使用子主题的情况下,将返回子主题目录,而不是父主题目录(如果你想要父目录,请使用 get_template_directory() 代替)。
- 要检索样式表目录的URI,使用get_stylesheet_directory_uri()
- 要检索父主题的路径,使用get_template_directory()
源码
更新日志
版本 | 描述 |
---|---|
1.5.0 | 开始引入 |
使用示例
基本示例
引入一个PHP文件
<?php include( get_stylesheet_directory() . '/includes/myfile.php' ); ?>