사용자가 주제를 편집하도록 강제하는 방법

커스텀 플래그를 생성해 보세요. 예를 들어 edit post flag라고 이름을 붙인다면

그런 다음 테마 컴포넌트의 CSS에서 다음과 같이 설정합니다:

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

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