Skip to content

Instantly share code, notes, and snippets.

@elpuas
Created November 14, 2019 00:35
Show Gist options
  • Save elpuas/bc959ca24a1dd6e0b14adcb37a400460 to your computer and use it in GitHub Desktop.
Save elpuas/bc959ca24a1dd6e0b14adcb37a400460 to your computer and use it in GitHub Desktop.
remove editor panels
wp.data.dispatch( 'core/edit-post').removeEditorPanel( 'taxonomy-panel-category' ) ; // category
wp.data.dispatch( 'core/edit-post').removeEditorPanel( 'taxonomy-panel-TAXONOMY-NAME' ) ; // custom taxonomy
wp.data.dispatch( 'core/edit-post').removeEditorPanel( 'taxonomy-panel-post_tag' ); // tags
wp.data.dispatch( 'core/edit-post').removeEditorPanel( 'featured-image' ); // featured image
wp.data.dispatch( 'core/edit-post').removeEditorPanel( 'post-link' ); // permalink
wp.data.dispatch( 'core/edit-post').removeEditorPanel( 'page-attributes' ); // page attributes
wp.data.dispatch( 'core/edit-post').removeEditorPanel( 'post-excerpt' ); // Excerpt
wp.data.dispatch( 'core/edit-post').removeEditorPanel( 'discussion-panel' ); // Discussion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment