-
-
Save kreamweb/1d7af747bfacfb5f4cd7d45f813dc4bd to your computer and use it in GitHub Desktop.
This file contains 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.domReady(() => { | |
find blocks styles | |
wp.blocks.getBlockTypes().forEach((block) => { | |
console.log(block); | |
if (_.isArray(block['styles'])) { | |
console.log(block.name, _.pluck(block['styles'], 'name')); | |
} | |
}); | |
wp.blocks.unregisterBlockStyle('core/image', 'default'); | |
wp.blocks.unregisterBlockStyle('core/image', 'rounded'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment