Skip to content

Instantly share code, notes, and snippets.

@temperatio
Forked from lkhedlund/block.js
Last active June 18, 2020 08:41
Show Gist options
  • Save temperatio/a995003bc72624a4758eb5f675bb2862 to your computer and use it in GitHub Desktop.
Save temperatio/a995003bc72624a4758eb5f675bb2862 to your computer and use it in GitHub Desktop.
Gutenberg: Custom Block Category #gutenberg #wordpress
registerBlockType( 'loomo/yoshi-cookies', {
category: 'mario-blocks', // Block category
<?php
function my_mario_block_category( $categories, $post ) {
return array_merge(
$categories,
array(
array(
'slug' => 'mario-blocks',
'title' => __( 'Mario Blocks', 'mario-blocks' ),
),
)
);
}
add_filter( 'block_categories', 'my_mario_block_category', 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment