Skip to main content
Login Join
Snippet · PHP

Add Custom Block Pattern Category

Shared by Darshit Rajyaguru · June 15, 2026 · @init

3 views
Back to Snippets

Creates a custom pattern category for reusable block designs.

add_action('init', function(){
        register_block_pattern_category(
            'ai-patterns',
            array(
                'label'=>'AI Generated Patterns'
            )
        );
    }
);