# gutenberg/10.5.4/lib/block-patterns/heading.php

Gutenberg, version 10.5.4. 17 lines.

- Page: https://pluginprobe.com/plugins/gutenberg/10.5.4/code/lib/block-patterns/heading.php
- Raw: https://pluginprobe.com/plugins/gutenberg/10.5.4/raw/lib/block-patterns/heading.php
- Modified: 2021-04-28T21:13:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/gutenberg/10.5.4/code/lib/block-patterns/heading.php#L10-L20`.

```php
<?php
/**
 * Heading.
 *
 * @package WordPress
 */

return array(
	'title'       => _x( 'Heading', 'Block pattern title', 'default' ),
	'categories'  => array( 'text' ),
	'blockTypes'  => array( 'core/heading' ),
	'content'     => '<!-- wp:heading {"align":"wide","style":{"typography":{"fontSize":"48px","lineHeight":"1.1"}}} -->
	<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>
	<!-- /wp:heading -->',
	'description' => _x( 'Heading text', 'Block pattern description', 'default' ),
);

```
