我有一个wordpress自定义主题设置,我想创建单独的类别模板,现在看到模板层次结构,我创建了类别{slug}文件,现在当我在标题部分链接自定义JavaScript文件时,插入标题中的脚本是-
<script type="text/javascript" src="../literature/js/head.min.js"></script>
在我的内容加载后,页脚中要执行的脚本是-
<script>
head.js(
{ jquery : "js/jquery.min.js" },
{ mousewheel : "js/jquery.mousewheel.js" },
{ mwheelIntent : "js/mwheelIntent.js" },
{ jScrollPane : "js/jquery.jscrollpane.min.js" },
{ history : "js/jquery.history.js" },
{ stringLib : "js/core.string.js" },
{ easing : "js/jquery.easing.1.3.js" },
{ smartresize : "js/jquery.smartresize.js" },
{ page : "js/jquery.page.js" }
);
</script>
现在,我发现所有这些文件都存在404错误,以下是firebug结果:-
"NetworkError: 404 Not Found - http://localhost/deadman/wordpress/category/literature/wp-content/themes/testing/js/literature/core.string.js"
现在我已经尝试过的事情是
"<?php bloginfo(\'template_url\');/js/literature?>"
"wp-content/themes/testing/js/literature"
任何人都有可能解决这个问题,我想这是因为我在页脚部分使用的javascript原型,但我仍然无法修复这个问题。