Created
November 14, 2019 00:35
-
-
Save elpuas/bc959ca24a1dd6e0b14adcb37a400460 to your computer and use it in GitHub Desktop.
remove editor panels
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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