wordpress get_template_directory_uri函数不返回模板目录

时间:2015-07-16 00:01:18

标签: php wordpress

我有以下功能访问javascript文件:

<script src="<?php echo get_template_directory_uri(); ?>/js/plugins.js"></script>

它应该返回:http://example.com/mytemplate/js/plugins.js

相反它返回: http://example.com/_templates/default_site/js/placeholder.js

我做错了什么?

1 个答案:

答案 0 :(得分:1)

试试这个:

<script src="<?php echo get_stylesheet_directory_uri(); ?>/js/plugins.js"></script>