函数原型
parse_blocks( string $content ): array[]
函数描述
Parses blocks out of a content string.
是否弃用
未弃用
函数参数
-
$content
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. |

