File: /www/wwwroot/njmuedu.com/wp-content/themes/blogrank-pro/inc/block-patterns.php
<?php
/**
* Block Patterns
*/
/**
* Register Block Pattern Category.
*/
if ( function_exists( 'register_block_pattern_category' ) ) {
register_block_pattern_category(
'blogrank',
array( 'label' => esc_html__( 'blogrank', 'blogrank' ) )
);
}
/**
* Register Block Patterns.
*/
if ( function_exists( 'register_block_pattern' ) ) {
// Large Text.
register_block_pattern(
'blogrank/large-text',
array(
'title' => esc_html__( 'Large text', 'blogrank' ),
'categories' => array( 'blogrank' ),
'viewportWidth' => 1440,
'content' => '<!-- wp:heading {"align":"none","fontSize":"gigantic","style":{"typography":{"lineHeight":"1.1"}}} --><h2 class="has-gigantic-font-size" style="line-height:1.1">' . esc_html__( 'A new blog theme for WordPress', 'blogrank' ) . '</h2><!-- /wp:heading -->',
)
);
}