true ] ); // Register Pattern Category if ( function_exists( 'register_block_pattern_category' ) ) { register_block_pattern_category( 'ctbPattern', [ 'label' => __( 'Countdown Time', 'countdown-time' ) ] ); } // Register Pattern if ( !empty( $patterns ) ) { foreach ( $patterns as $pattern ) { if ( function_exists( 'register_block_pattern' ) ) { register_block_pattern( $pattern['name'], [ 'title' => $pattern['title'], 'content' => $pattern['content'], 'description' => $pattern['description'], 'categories' => [ 'ctbPattern' ], 'keywords' => $pattern['keywords'], 'blockTypes' => $pattern['blockTypes'], 'viewportWidth' => 1200 ] ); } } } } } new Patterns();