# gutenberg/5.2.0/packages/block-library/src/shortcode/index.php

Gutenberg, version 5.2.0. 33 lines.

- Page: https://pluginprobe.com/plugins/gutenberg/5.2.0/code/packages/block-library/src/shortcode/index.php
- Raw: https://pluginprobe.com/plugins/gutenberg/5.2.0/raw/packages/block-library/src/shortcode/index.php
- Modified: 2018-11-30T11:38:38+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/5.2.0/code/packages/block-library/src/shortcode/index.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 render_block_core_shortcode( $attributes, $content ) {
	return wpautop( $content );
}

/**
 * Registers the `core/shortcode` block on server.
 */
function register_block_core_shortcode() {
	register_block_type(
		'core/shortcode',
		array(
			'render_callback' => 'render_block_core_shortcode',
		)
	);
}

add_action( 'init', 'register_block_core_shortcode' );

```
