diff --git a/lib/block-patterns.php b/lib/block-patterns.php index 9abb3f2c39d5b..8fbba72d37621 100644 --- a/lib/block-patterns.php +++ b/lib/block-patterns.php @@ -53,6 +53,7 @@ function gutenberg_register_block_patterns() { register_block_pattern( 'core/large-header', gutenberg_load_block_pattern( 'large-header' ) ); register_block_pattern( 'core/large-header-paragraph', gutenberg_load_block_pattern( 'large-header-paragraph' ) ); register_block_pattern( 'core/three-buttons', gutenberg_load_block_pattern( 'three-buttons' ) ); + register_block_pattern( 'core/heading-paragraph', gutenberg_load_block_pattern( 'heading-paragraph' ) ); register_block_pattern( 'core/quote', gutenberg_load_block_pattern( 'quote' ) ); } diff --git a/lib/patterns/heading-paragraph.php b/lib/patterns/heading-paragraph.php new file mode 100644 index 0000000000000..701e600d9ef89 --- /dev/null +++ b/lib/patterns/heading-paragraph.php @@ -0,0 +1,16 @@ + __( 'Heading and paragraph', 'gutenberg' ), + 'content' => "\n
\n

2. " . __( ' Which treats of the first sally the ingenious Don Quixote made from home', 'gutenberg' ) . " +

\n\n\n\n

" . __( 'These preliminaries settled, he did not care to put off any longer the execution of his design, urged on to it by the thought of all the world was losing by his delay, seeing what wrongs he intended to right, grievances to redress, injustices to repair, abuses to remove, and duties to discharge.', 'gutenberg' ) . " +

\n
\n", + 'viewportWidth' => 1000, + 'categories' => array( 'text' ), + 'description' => _x( 'A heading followed by a paragraph.', 'Block pattern description', 'gutenberg' ), +);