wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_normalize_remote_block_pattern › WordPress Function

Depuis6.2.0
Dépréciéen/a
wp_normalize_remote_block_pattern ( $pattern )
Accès:
  • private
Paramètres:
  • (array) $pattern Pattern as returned from the Pattern Directory API.
    Requis: Oui
Retourne:
  • (array) Normalized pattern.
Défini(e) dans:
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;
}