wpseek.com
WordPress开发者和主题制作者的搜索引擎



serialize_blocks › WordPress Function

Since5.3.1
已弃用n/a
serialize_blocks ( $blocks )
参数:
  • (array[]) $blocks An array of representative arrays of parsed block objects. See serialize_block().
    Required: Yes
返回:
  • (string) String of rendered HTML.
定义在:
文档:

Returns a joined string of the aggregate serialization of the given parsed blocks.



源码

function serialize_blocks( $blocks ) {
	return implode( '', array_map( 'serialize_block', $blocks ) );
}