Uses
| Uses | Description |
|---|---|
| wp-includes/blocks.php: block_parser_class | Filter to allow plugins to replace the server-side block parser |
| wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
Parses blocks out of a content string.
(string) (Required) Post content.
(array[]) Array of parsed block objects.
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 );
} | Version | Description |
|---|---|
| 5.0.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/parse_blocks