如何创建只有管理员才能使用的主题?

我同意这里几乎所有人的说法。

如果你真的想走 CSS 的方式,可以这样做,让你的 CSS 修改只应用于非管理员:

在你的主题的 Head 选项卡中,写入以下内容:

<script type="text/discourse-plugin" version="1.4.0">
    let currentUser = api.getCurrentUser();
    if (currentUser.admin == true) {
         document.querySelector("body").classList.add("is-admin");
    }
</script>

所有 的 CSS 规则包裹在 body:not(.is-admin) { (你的 CSS) } 中,例如:

body:not(.is-admin) {
    #main {
        background: pink;
    }
}

在我的示例中,粉色背景将应用于除管理员用户外的所有人。

3 个赞