tcmulder / aquamin

Aquamin WordPress Theme
3 stars 1 forks source link

Add our own block category to blocks.php (all block.json files are already set up for it). #31

Closed tcmulder closed 1 year ago

tcmulder commented 1 year ago
/**
 * Add our own block category
 */
add_filter( 'block_categories' , function( $categories ) {
    $categories[] = array(
        'slug'  => 'aquamin-blocks',
        'title' => __( 'Custom Blocks', 'aquamin' ),
    );
    return $categories;
} );