wpseek.com
A WordPress-centric search engine for devs and theme authors



serialize_blocks › WordPress Function

Since5.3.1
Deprecatedn/a
serialize_blocks ( $blocks )
Parameters:
  • (array[]) $blocks An array of representative arrays of parsed block objects. See serialize_block().
    Required: Yes
Returns:
  • (string) String of rendered HTML.
Defined at:
Codex:

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



Source

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