如何强制用户编辑主题

创建自定义标志,例如,如果你将其命名为 edit post flag

然后在主题组件的 CSS 中:

.flag-action-type.custom_edit_post_flag {
    display: none;
}

.staff .flag-action-type.custom_edit_post_flag {
    display: block;
}