# gutenberg/12.1.0/build/block-library/blocks/shortcode.php

Gutenberg, version 12.1.0. 32 lines.

- Page: https://pluginprobe.com/plugins/gutenberg/12.1.0/code/build/block-library/blocks/shortcode.php
- Raw: https://pluginprobe.com/plugins/gutenberg/12.1.0/raw/build/block-library/blocks/shortcode.php
- Modified: 2020-04-15T16:36:26+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/12.1.0/code/build/block-library/blocks/shortcode.php#L10-L20`.

```php
<?php
/**
 * Server-side rendering of the `core/shortcode` block.
 *
 * @package WordPress
 */

/**
 * Performs wpautop() on the shortcode block content.
 *
 * @param array  $attributes The block attributes.
 * @param string $content    The block content.
 *
 * @return string Returns the block content.
 */
function gutenberg_render_block_core_shortcode( $attributes, $content ) {
	return wpautop( $content );
}

/**
 * Registers the `core/shortcode` block on server.
 */
function gutenberg_register_block_core_shortcode() {
	register_block_type_from_metadata(
		__DIR__ . '/shortcode',
		array(
			'render_callback' => 'gutenberg_render_block_core_shortcode',
		)
	);
}
add_action( 'init', 'gutenberg_register_block_core_shortcode', 20 );

```
