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



wp_normalize_remote_block_pattern › WordPress Function

Since6.2.0
Deprecatedn/a
wp_normalize_remote_block_pattern ( $pattern )
Access:
  • private
Parameters:
  • (array) $pattern Pattern as returned from the Pattern Directory API.
    Required: Yes
Returns:
  • (array) Normalized pattern.
Defined at:
Codex:

Normalize the pattern properties to camelCase.

The API's format is snake_case, register_block_pattern() expects camelCase.


Source

function wp_normalize_remote_block_pattern( $pattern ) {
	if ( isset( $pattern['block_types'] ) ) {
		$pattern['blockTypes'] = $pattern['block_types'];
		unset( $pattern['block_types'] );
	}

	if ( isset( $pattern['viewport_width'] ) ) {
		$pattern['viewportWidth'] = $pattern['viewport_width'];
		unset( $pattern['viewport_width'] );
	}

	return (array) $pattern;
}