register cmt pattern category

This commit is contained in:
Aadil Ayub 2024-04-25 20:40:36 +05:00
parent f0ff2dc946
commit 8d7f2ffdb5
1 changed files with 9 additions and 1 deletions

View File

@ -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' );
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' );