我从一个新客户端继承了一个网站,该网站的wordpress网站由他们之前的webdev手工编码。当前代码(在header.php文件中)是:
//When page loads...
$(".tab").hide(); //Hide all content
//Find URL location
var idToShow = location.pathname.split("/")[1];
//If URL location is one of these, then show its proper menu. If it isn't just show the home's menu.
if (idToShow == "unknown" || idToShow == "home" || idToShow == "parish" || idToShow == "formation" || idToShow == "school" || idToShow == "youth-ministry" || idToShow == "councils" || idToShow == "committees" || idToShow == "organizationsactivites" || idToShow == "contact") {
$("#nav li."+idToShow).addClass("current").show(); //Activate first tab
$("#"+idToShow).show();
}
else {
$("#nav li.home").addClass("current").show(); //Activate first tab
$("#home").show();
}
我正在将此网站迁移到新主机,这适用于旧主机,但不新主机。我不确定在哪里可以找到错误日志(如果有的话)或任何其他信息可以帮我解决这个问题。有任何想法吗?谢谢!
答案 0 :(得分:0)
$(function() {
//When page loads...
$(".tab").hide(); //Hide all content
//Find URL location
var idToShow = location.pathname.split("/")[1];
//If URL location is one of these, then show its proper menu. If it isn't just show the home's menu.
if (idToShow == "unknown" || idToShow == "home" || idToShow == "parish" || idToShow == "formation" || idToShow == "school" || idToShow == "youth-ministry" || idToShow == "councils" || idToShow == "committees" || idToShow == "organizationsactivites" || idToShow == "contact") {
$("#nav li."+idToShow).addClass("current").show(); //Activate first tab
$("#"+idToShow).show();
}
else {
$("#nav li.home").addClass("current").show(); //Activate first tab
$("#home").show();
}
});
你好,试试吧。这将解决您的问题。