parse_blocks
函数
parse_blocks ( $content )
- 参数
-
-
(string)
$content
Post content.- Required: 是
-
(string)
- 返回值
-
- (array[]) Array of parsed block objects.
- 定义位置
-
-
wp-includes/blocks.php
, line 1062
-
wp-includes/blocks.php
- 引入
- 5.0.0
- 弃用
- –
Parses blocks out of a content string.
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 ); }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。