
* Geologist: Add block patterns * Add pattern files * Update styles for block patterns * Update content for block patterns * fix quote markup * adding textdomain * add paragraph block comments * add image to repo
15 lines
454 B
PHP
15 lines
454 B
PHP
<?php
|
|
/**
|
|
* Two posts with features images in a query block.
|
|
*
|
|
* @package Geologist
|
|
*/
|
|
|
|
return array(
|
|
'title' => __( 'Introduction', 'geologist' ),
|
|
'categories' => array( 'geologist' ),
|
|
'blockTypes' => array( 'core/cover', 'core/header' ),
|
|
'content' => '<!-- wp:heading {"level":3} -->
|
|
<h3>' . esc_html__( "Geologist is a blog dedicated to everything buried under the earth's surface.", 'geologist' ) . '</h3>
|
|
<!-- /wp:heading -->',
|
|
);
|