wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



block_core_gallery_data_id_backcompatibility › WordPress Function

Dan/a
Deprecaton/a
block_core_gallery_data_id_backcompatibility ( $parsed_block )
Parametri:
  • (array) $parsed_block The block being rendered.
    Richiesto:
Ritorna:
  • (array) The migrated block object.
Definito a:
Codex:

Handles backwards compatibility for Gallery Blocks, whose images feature a `data-id` attribute.

Now that the Gallery Block contains inner Image Blocks, we add a custom data-id attribute before rendering the gallery so that the Image Block can pick it up in its render_callback.


Sorgenti

function block_core_gallery_data_id_backcompatibility( $parsed_block ) {
	if ( 'core/gallery' === $parsed_block['blockName'] ) {
		foreach ( $parsed_block['innerBlocks'] as $key => $inner_block ) {
			if ( 'core/image' === $inner_block['blockName'] ) {
				if ( ! isset( $parsed_block['innerBlocks'][ $key ]['attrs']['data-id'] ) && isset( $inner_block['attrs']['id'] ) ) {
					$parsed_block['innerBlocks'][ $key ]['attrs']['data-id'] = esc_attr( $inner_block['attrs']['id'] );
				}
			}
		}
	}

	return $parsed_block;
}