WP_Block_Patterns_Registry::prepare_content( array $pattern, array $hooked_blocks ): string

In this article

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Prepares the content of a block pattern. If hooked blocks are registered, they get injected into the pattern, when they met the defined criteria.

Parameters

$patternarrayrequired
Registered pattern properties.
$hooked_blocksarrayrequired
The list of hooked blocks.

Return

string The content of the block pattern.

Source

	if ( $outside_init_only ) {
		$patterns = &$this->registered_patterns_outside_init;
	} else {
		$patterns = &$this->registered_patterns;
	}
	if ( ! isset( $patterns[ $pattern_name ]['content'] ) && isset( $patterns[ $pattern_name ]['filePath'] ) ) {
		ob_start();
		include $patterns[ $pattern_name ]['filePath'];
		$patterns[ $pattern_name ]['content'] = ob_get_clean();
		unset( $patterns[ $pattern_name ]['filePath'] );
	}
	return $patterns[ $pattern_name ]['content'];
}

Changelog

VersionDescription
6.4.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.