__( 'Free Paterns', 'bestio' ) ) ); } add_action( 'init', 'bestio_wpdocs_block_pattern_category' ); function bestio_custom_register_block_patterns() { register_block_pattern( 'Articles', // Unique name for your pattern array( 'title' => __( 'Articles', 'bestio' ), // Title displayed in the block editor 'description' => 'Section showing the articles of the blog', // Description of your pattern 'content' => '
', // HTML content of your pattern 'categories' => array('free-patterns'), // Category under which your pattern should appear 'keywords' => array('custom', 'pattern', 'my'), // Keywords to help users find your pattern ) ); register_block_pattern( 'Marquee', // Unique name for your pattern array( 'title' => __( 'Marquee', 'bestio' ), // Title displayed in the block editor 'description' => 'Section showing the marquee line using Gsap Animation', // Description of your pattern 'content' => '
', // HTML content of your pattern 'categories' => array('free-patterns'), // Category under which your pattern should appear 'keywords' => array('custom', 'pattern', 'my'), // Keywords to help users find your pattern ) ); register_block_pattern( 'About Us', // Unique name for your pattern array( 'title' => __( 'About Us', 'bestio' ), // Title displayed in the block editor 'description' => 'Section showing the About Us Section', // Description of your pattern 'content' => '
', // HTML content of your pattern 'categories' => array('free-patterns'), // Category under which your pattern should appear 'keywords' => array('custom', 'pattern', 'my'), // Keywords to help users find your pattern ) ); register_block_pattern( 'Video Background', // Unique name for your pattern array( 'title' => __( 'Video Background', 'bestio' ), // Title displayed in the block editor 'description' => 'Section with a Video Background', // Description of your pattern 'content' => '

With the Best

', // HTML content of your pattern 'categories' => array('free-patterns'), // Category under which your pattern should appear 'keywords' => array('custom', 'pattern', 'my'), // Keywords to help users find your pattern ) ); register_block_pattern( 'Introduction Section', // Unique name for your pattern array( 'title' => __( 'Introduction Section', 'bestio' ), // Title displayed in the block editor 'description' => 'Introduction Section of the Page', // Description of your pattern 'content' => '

Bestio Corporate

', // HTML content of your pattern 'categories' => array('free-patterns'), // Category under which your pattern should appear 'keywords' => array('custom', 'pattern', 'my'), // Keywords to help users find your pattern ) ); } add_action('init', 'bestio_custom_register_block_patterns'); ?>