Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dexit/5e1602b4b4d031570ada583bd1bb7bc2 to your computer and use it in GitHub Desktop.
Save dexit/5e1602b4b4d031570ada583bd1bb7bc2 to your computer and use it in GitHub Desktop.
<?php
add_filter(
'render_block',
function ( $block_content, $block ) {
if ( 'core/image' === $block['blockName'] ) {
$block_content = str_replace(
array( '<figure ', '</figure>' ),
array( '<p ', '</p>' ),
$block_content
);
}
return $block_content;
},
10,
2
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment