Skip to content

Instantly share code, notes, and snippets.

@elpuas
Last active February 10, 2021 14:45
Show Gist options
  • Save elpuas/c1e806a074b97d1b83b3d8353bb926d0 to your computer and use it in GitHub Desktop.
Save elpuas/c1e806a074b97d1b83b3d8353bb926d0 to your computer and use it in GitHub Desktop.
Gutenberg Disable RichText Formats
wp.domReady( function() {
wp.richText.unregisterFormatType( 'core/bold' );
wp.richText.unregisterFormatType( 'core/italic' );
wp.richText.unregisterFormatType( 'core/strikethrough' );
wp.richText.unregisterFormatType( 'core/subscript' );
wp.richText.unregisterFormatType( 'core/superscript' );
wp.richText.unregisterFormatType( 'core/text-color' );
wp.richText.unregisterFormatType( 'core/image' );
wp.richText.unregisterFormatType( 'core/underline' );
wp.richText.unregisterFormatType( 'core/code' );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment