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.
Return
(array[]) Array of parsed block objects.
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 );
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 5.0.0 | Introduced. |