Skip to content

Instantly share code, notes, and snippets.

@strarsis
Created February 22, 2020 14:07
Show Gist options
  • Save strarsis/3c3a96e4c634b35a5cd14de747e1ec82 to your computer and use it in GitHub Desktop.
Save strarsis/3c3a96e4c634b35a5cd14de747e1ec82 to your computer and use it in GitHub Desktop.
<?php
/*
Plugin Name: Gutenberg Group Test
Plugin URI: https://gist.github.com/strarsis/3c3a96e4c634b35a5cd14de747e1ec82
Description: Adds a test block style for core/group block.
Version: 0.0.1
Author: strarsis
Author URI: https://gist.github.com/strarsis
License: MIT
*/
add_action( 'init', function() {
if(!function_exists('register_block_style')) return;
// Block styles
// Group
register_block_style('core/group', [
'name' => 'test',
'label' => 'Test',
]);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment