我有以下功能访问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
我做错了什么?
答案 0 :(得分:1)
试试这个:
<script src="<?php echo get_stylesheet_directory_uri(); ?>/js/plugins.js"></script>