| 1 |
<?php |
| 2 |
$id = wp_unique_id( 'bBlocksAdvancedImage-' ); |
| 3 |
extract( $attributes ); |
| 4 |
|
| 5 |
?> |
| 6 |
<div |
| 7 |
<?php // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- get_block_wrapper_attributes() is properly escaped ?> |
| 8 |
<?php echo get_block_wrapper_attributes(); ?> |
| 9 |
id='<?php echo esc_attr( $id ); ?>' |
| 10 |
data-attributes='<?php echo esc_attr( wp_json_encode( $attributes ) ); ?>' |
| 11 |
data-featured_image_url='<?php echo esc_attr( has_post_thumbnail() ? get_the_post_thumbnail_url( get_the_ID(), $layout['size'] ?? 'full' ) : '' ); ?>' |
| 12 |
></div> |