햄버거 메뉴에서 '키보드 단축키'와 '데스크톱 보기'를 숨기는 방법은?

How can I hide the “Keyboard Shortcuts” and the “Desktop View” from the hamburger menu?

You can add this CSS to your theme (admin > customize > themes)

.panel {
  .keyboard-shortcuts-link,
  .mobile-toggle-link {
    display: none !important;
  }
}