diff --git a/functions.php b/functions.php index 4e4ef07..c069dcd 100644 --- a/functions.php +++ b/functions.php @@ -11,4 +11,12 @@ function cmt_block_styles() { add_theme_support( 'wp-block-styles' ); add_editor_style( 'styles.css' ); } -add_action( 'after_setup_theme', 'cmt_block_styles' ); \ No newline at end of file +add_action( 'after_setup_theme', 'cmt_block_styles' ); + +function cmt_pattern_categories() { + register_block_pattern_category( + 'cmt', + array( 'label' => __( 'CMT Engineering', 'cmt' ) ) + ); +} +add_action( 'init', 'cmt_pattern_categories' ); \ No newline at end of file