wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



parse_blocks › WordPress Function

Seit5.0.0
Veraltetn/v
parse_blocks ( $content )
Parameter:
  • (string) $content Post content.
    Erforderlich: Ja
Gibt zurück:
  • (array[]) { Array of block structures. @type array ...$0 { A representative array of a single parsed block object. See WP_Block_Parser_Block. @type string $blockName Name of block. @type array $attrs Attributes from block comment delimiters. @type array[] $innerBlocks List of inner blocks. An array of arrays that have the same structure as this one. @type string $innerHTML HTML from inside block comment delimiters. @type array $innerContent List of string fragments and null markers where inner blocks were found. } }
Definiert in:
Codex:

Parses blocks out of a content string.



Quellcode

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 );
}