Skip to content

Instantly share code, notes, and snippets.

@joppuyo
Created September 17, 2020 12:27
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joppuyo/67683ebc4157873fb0ac53995e308412 to your computer and use it in GitHub Desktop.
Save joppuyo/67683ebc4157873fb0ac53995e308412 to your computer and use it in GitHub Desktop.
function removeDropCap(settings, name) {
if (name !== 'core/paragraph') {
return settings;
}
let newSettings = Object.assign({}, settings);
if (newSettings.supports &&
newSettings.supports.__experimentalFeatures &&
newSettings.supports.__experimentalFeatures.typography &&
newSettings.supports.__experimentalFeatures.typography.dropCap) {
newSettings.supports.__experimentalFeatures.typography.dropCap = false
}
return newSettings;
}
wp.hooks.addFilter('blocks.registerBlockType', 'sc/gb/remove-drop-cap', removeDropCap);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment