Get Bricks

Filter: bricks/footer/attributes

Filter to add HTML attributes to the footer tag (@since 1.5).

add_filter( 'bricks/footer/attributes', function( $attributes ) {
  // Add 'data-is-footer' HTML attribute to footer with value 'y'
  $attributes['data-is-footer'] = 'y';

  return $attributes;
} );