我正在使用WordPress 4.9.6
.
在<head>
标签中,包括一些代码行,其中包含插件的脚本和链接标签,但这里 URL 发生了一些事情:
<script src="src="http://mydomain.test/wp-content/plugins/var/www/mydomain.test/wp-content/plugins/pluginsname/js/file.js"
这需要是:
<script src="http://mydomain.test/wp-content/plugins/pluginsname/js/file.js"
它看起来像WordPress混合了URL和文件路径...
这里发生了什么,我该如何解决这个问题?
你可以试试这个
<?php echo WP_PLUGIN_URL.'/plugin-name/js/file.js';?>
WP_PLUGIN_URL会给
http://mydomain.test/wp-content/plugins/