parse_blocks() WordPress Function

The parse_blocks() function is used to parse blocks of content from a WordPress post. This function is used to generate the final HTML output of a WordPress post.

parse_blocks( string $content ) #

Parses blocks out of a content string.


Parameters

$content

(string)(Required)Post content.


Top ↑

Return

(array[]) Array of parsed block objects.


Top ↑

Source

File: wp-includes/blocks.php

function parse_blocks( $content ) {
	/**
	 * Filter to allow plugins to replace the server-side block parser
	 *
	 * @since 5.0.0
	 *
	 * @param string $parser_class Name of block parser class.
	 */
	$parser_class = apply_filters( 'block_parser_class', 'WP_Block_Parser' );

	$parser = new $parser_class();
	return $parser->parse( $content );
}


Top ↑

Changelog

Changelog
VersionDescription
5.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.