render_block_core_shortcode()WP 1.0

Performs wpautop() on the shortcode block content.

No Hooks.

Return

String. Returns the block content.

Usage

render_block_core_shortcode( $attributes, $content );
$attributes(array) (required)
The block attributes.
$content(string) (required)
The block content.

render_block_core_shortcode() code WP 6.5.2

function render_block_core_shortcode( $attributes, $content ) {
	return wpautop( $content );
}