突出显示当前链接Wordpress

突出显示当前链接Wordpress,wordpress,Wordpress,我正在开发这个网站 我用这段代码突出显示右上角的当前链接(有脚本的、有品牌的/商业的),但没有脚本的链接不会突出显示,我想这是因为它是主页。当我在主页上时,有没有办法使它突出显示 $(function() { $(".textwidget a").each(function() { if (this.href == window.location) { $(this).css("color", "red"); }; }); }); 我把它解决了,这是主页的内容

我正在开发这个网站

我用这段代码突出显示右上角的当前链接(有脚本的、有品牌的/商业的),但没有脚本的链接不会突出显示,我想这是因为它是主页。当我在主页上时,有没有办法使它突出显示

$(function() {
$(".textwidget a").each(function() {
    if (this.href == window.location) {
        $(this).css("color", "red");
    };
});
});

我把它解决了,这是主页的内容

<span id="homepage-flag" style="display: none" />
if($("#homepage-flag").length > 0) {
$("#text-2 a").css("color", "red");
}