wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_normalize_remote_block_pattern is private and should not be used in themes or plugins directly.
wp_normalize_remote_block_pattern › WordPress Function
Since6.2.0
Deprecatedn/a
› wp_normalize_remote_block_pattern ( $pattern )
Access: |
|
Parameters: |
|
Returns: |
|
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; }