官方社区左侧菜单有一组自定义的菜单Quick Links
找了下后台没有添加的地方。
后来搜了官方社区,找到了添加的方法。分享给大家。
在后台设置 > 外观 > 自定义 > 页脚 部分,添加以下代码即可实现。
具体的菜单和链接可以自己修改。
<script>
const htmlstr = `<div class="py-2 px-3 mt-3 small fw-bold quick-link">Quick Links</div>
<a class="nav-link" href="/link1">
link name
</a>
<a class="nav-link" href="/link2">
link name
</a>`;
window.onload = function () {
const navUser = document.querySelector('#sideNav a[href="/users"]');
const navQuick = document.querySelector("#sideNav .quick-link");
if (navUser && !navQuick) {
navUser.insertAdjacentHTML("afterend", htmlstr);
}
};
const timer = setInterval(() => {
const navUser = document.querySelector('#sideNav a[href="/users"]');
const navQuick = document.querySelector("#sideNav .quick-link");
if (navUser && !navQuick) {
navUser.insertAdjacentHTML("afterend", htmlstr);
}
// If you don't need to keep the selected style, you can remove the following code
// nav active style start
const links = document.querySelectorAll('#sideNav a[href^="/tags/"]');
links.forEach((link) => {
const href = link.getAttribute("href");
const currentPathname = window.location.pathname;
if (href === currentPathname) {
link.classList.add("active");
} else {
link.classList.remove("active");
}
});
}, 500);
// nav active style end
window.addEventListener("beforeunload", function (event) {
clearInterval(timer);
});
</script>