Skip to content

Instantly share code, notes, and snippets.

@phpbits
Last active April 22, 2021 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save phpbits/6be9d1db3d90af06ba7b76ec54a8d18d to your computer and use it in GitHub Desktop.
Save phpbits/6be9d1db3d90af06ba7b76ec54a8d18d to your computer and use it in GitHub Desktop.
Create Custom Image Block Styles
/**
* WordPress dependencies
*/
const { __ } = wp.i18n;
const { registerBlockStyle } = wp.blocks;
registerBlockStyle( 'core/image' , {
name: 'default',
label: __( 'Default' ),
isDefault: true,
});
registerBlockStyle( 'core/image', {
name: 'circular-image',
label: __( 'Circular' ),
isDefault: false,
});
registerBlockStyle( 'core/image', {
name: 'rounded-corners',
label: __( 'Rounded Corners' ),
isDefault: false,
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment