在我的标题中,我使用 wp_enqueue_script 来加载一些外部文件。路径以https开头,但是当我在浏览器中查看源代码时,它变成了http。
这是我所拥有的:
wp_enqueue_script('handle', 'https://secure.example.com/path/file.aspx',array(), true);
但是在头脑中,当我在浏览器中查看源代码时,我得到了这个:
<script type='text/javascript' src='http://secure.example.com/path/file.aspx?ver=1'></script>
这里发生了什么?