__experimental_woocommerce_blocks_add_data_attributes_to_block filter-hookWC 5.9.0

Filters the list of allowed Block Names

This hook defines which block names should have block name and attribute data- attributes appended on render.

Usage

add_filter( '__experimental_woocommerce_blocks_add_data_attributes_to_block', 'wp_kama__experimental_woocommerce_blocks_add_data_attributes_to_block_filter' );

/**
 * Function for `__experimental_woocommerce_blocks_add_data_attributes_to_block` filter-hook.
 * 
 * @param array $allowed_namespaces List of namespaces.
 *
 * @return array
 */
function wp_kama__experimental_woocommerce_blocks_add_data_attributes_to_block_filter( $allowed_namespaces ){

	// filter...
	return $allowed_namespaces;
}
$allowed_namespaces(array)
List of namespaces.

Changelog

Since 5.9.0 Introduced.

Where the hook is called

BlockTypesController::add_data_attributes()
__experimental_woocommerce_blocks_add_data_attributes_to_block
woocommerce/src/Blocks/BlockTypesController.php 141
$allowed_blocks = (array) apply_filters( '__experimental_woocommerce_blocks_add_data_attributes_to_block', array() );

Where the hook is used in WooCommerce

Usage not found.