PluginProbe
Gutenberg / 10.6.1
Gutenberg v10.6.1
23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 7.4.0 All 402 releases
gutenberg / lib / block-patterns / heading.php

heading.php in Gutenberg 10.6.1, at lib/block-patterns/heading.php

17 lines 757 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Heading.
4 *
5 * @package WordPress
6 */
7
8 return array(
9 'title' => _x( 'Heading', 'Block pattern title', 'default' ),
10 'categories' => array( 'text' ),
11 'blockTypes' => array( 'core/heading' ),
12 'content' => '<!-- wp:heading {"align":"wide","style":{"typography":{"fontSize":"48px","lineHeight":"1.1"}}} -->
13 <h2 class="alignwide" style="font-size:48px;line-height:1.1">' . esc_html__( "We're a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.", 'default' ) . '</h2>
14 <!-- /wp:heading -->',
15 'description' => _x( 'Heading text', 'Block pattern description', 'default' ),
16 );
17