我想删除post editor侧栏中的讨论面板removeEditorPanel()
.
我正在努力做到以下几点:
const { removeEditorPanel } = wp.data.dispatch( \'core/edit-post\' )
removeEditorPanel( \'discussion-panel\' )
然而,我得到一个错误
removeEditorPanel
没有定义,因为我想,
core/edit-post
尚未加载。是否有一个事件或挂钩,我可以使用它来知道帖子编辑器已加载?
作为一种解决方法,我使用间隔来检查window.wp
存在和aquerySelector()
检查.edit-post-sidebar
, 但这让人感觉很不舒服。