turn "tab" style headings into block style
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-08-29 15:37:47 +05:00
parent 2eb70c8f54
commit 95efe847b8
4 changed files with 53 additions and 28 deletions

8
js/block-styles.js Normal file
View File

@ -0,0 +1,8 @@
wp.domReady( () => {
wp.blocks.registerBlockStyle(
'core/', {
name: 'tabbed-heading',
label: 'Tabbed Heading',
}
)
} )